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
42 lines
792 B
Nix
42 lines
792 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
bash,
|
|
scdoc,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "fetchutils";
|
|
version = "unstable-2021-03-16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kiedtl";
|
|
repo = "fetchutils";
|
|
rev = "882781a297e86f4ad4eaf143e0777fb3e7c69526";
|
|
sha256 = "sha256-ONrVZC6GBV5v3TeBekW9ybZjDHF3FNyXw1rYknqKRbk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
scdoc
|
|
];
|
|
|
|
buildInputs = [
|
|
bash
|
|
];
|
|
|
|
installFlags = [ "PREFIX=$(out)/" ];
|
|
|
|
postPatch = ''
|
|
patchShebangs --host src/*
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Collection of small shell utilities to fetch system information";
|
|
homepage = "https://github.com/lptstr/fetchutils";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ moni ];
|
|
};
|
|
}
|