Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
694 B
Nix
36 lines
694 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ramfetch";
|
|
version = "1.1.0a";
|
|
|
|
src = fetchgit {
|
|
url = "https://codeberg.org/jahway603/ramfetch.git";
|
|
rev = version;
|
|
hash = "sha256-sUreZ6zm+a1N77OZszjnpS4mmo5wL1dhNGVldJCGoag=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D ramfetch $out/bin/ramfetch
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Tool which displays memory information";
|
|
homepage = "https://codeberg.org/jahway603/ramfetch";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.markbeep ];
|
|
mainProgram = "ramfetch";
|
|
};
|
|
}
|