summaryrefslogtreecommitdiffstats
path: root/pkgs/simple
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/simple')
-rw-r--r--pkgs/simple/otherutils.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/simple/otherutils.nix b/pkgs/simple/otherutils.nix
new file mode 100644
index 0000000..3cc0caa
--- /dev/null
+++ b/pkgs/simple/otherutils.nix
@@ -0,0 +1,15 @@
+{ pkgs, stdenv }:
+
+stdenv.mkDerivation rec {
+ pname = "otherutils";
+ version = "1.0";
+ src = pkgs.fetchgit {
+ url = "https://cgit.krebsco.de/otherutils";
+ rev = "refs/tags/${version}";
+ hash = "sha256-PLOxq/zDa4QFc4+42t22hZ4QbkLxM9H7Lkbys+4IWgg=";
+ };
+ env = {
+ PREFIX = placeholder "out";
+ };
+}
+