diff options
| author | tv <tv@krebsco.de> | 2025-08-12 11:59:52 +0200 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2025-08-12 11:59:52 +0200 |
| commit | fd087161f97a04e19f6baa508cd1e869098ca9e8 (patch) | |
| tree | 86f11f2a50e2816032f183209309f16d6ee3a4f1 /pkgs/simple/otherutils.nix | |
| parent | e118045b5d200cad36fe43a38a858750811dd8da (diff) | |
otherutils: init at 1.0
Diffstat (limited to 'pkgs/simple/otherutils.nix')
| -rw-r--r-- | pkgs/simple/otherutils.nix | 15 |
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"; + }; +} + |
