about summary refs log tree commit diff
path: root/pkgs/tools/misc/fetchutils
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2021-05-22 16:40:31 +0800
committerfortuneteller2k <lythe1107@gmail.com>2021-05-22 16:40:31 +0800
commit290fa04d05cc9942daecea6f15dcf07b1192d89c (patch)
tree74251219511a7e2b14cf120321f1c85995c184eb /pkgs/tools/misc/fetchutils
parentefee454783c5c14ae78687439077c1d3f0544d97 (diff)
fetchutils: init at unstable-2021-03-16
Diffstat (limited to 'pkgs/tools/misc/fetchutils')
-rw-r--r--pkgs/tools/misc/fetchutils/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/misc/fetchutils/default.nix b/pkgs/tools/misc/fetchutils/default.nix
new file mode 100644
index 0000000000000..bda9175724f15
--- /dev/null
+++ b/pkgs/tools/misc/fetchutils/default.nix
@@ -0,0 +1,29 @@
+{ lib, stdenvNoCC, fetchFromGitHub, bash, scdoc }:
+
+stdenvNoCC.mkDerivation rec {
+  pname = "fetchutils";
+  version = "unstable-2021-03-16";
+
+  src = fetchFromGitHub {
+    owner = "lptstr";
+    repo = pname;
+    rev = "882781a297e86f4ad4eaf143e0777fb3e7c69526";
+    sha256 = "sha256-ONrVZC6GBV5v3TeBekW9ybZjDHF3FNyXw1rYknqKRbk=";
+  };
+
+  buildInputs = [ bash scdoc ];
+
+  installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
+
+  postPatch = ''
+    patchShebangs --host src/*
+  '';
+
+  meta = with lib; {
+    description = "A collection of small shell utilities to fetch system information";
+    homepage = "https://github.com/lptstr/fetchutils";
+    license = licenses.mit;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ fortuneteller2k ];
+  };
+}