diff options
author | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-09-02 10:07:50 -0400 |
commit | f645808a1449a40d71e3cadd0b5b5bac164d5a7f (patch) | |
tree | bb1f9477c840ed41fc90e7a86cfb735d543d2ec0 /pkgs/zebra.nix | |
parent | a55d3efcaa9b8d2a30b40606dae3e06b37665369 (diff) |
lots of updates, idk
Diffstat (limited to 'pkgs/zebra.nix')
-rw-r--r-- | pkgs/zebra.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/zebra.nix b/pkgs/zebra.nix new file mode 100644 index 0000000..41f3616 --- /dev/null +++ b/pkgs/zebra.nix @@ -0,0 +1,14 @@ +{ stdenv, fetchgit }: +stdenv.mkDerivation { + name = "zebra"; + src = fetchgit { + url = "https://github.com/jb55/zebra"; + rev = "8fd29bc1c2e9b7b695d61e0f1329c819f57f74bb"; + sha256 = "sha256-IuI91J1Ms9lZvihbdGv6zRJFKvLo4dgIG9QIC5L3V4U="; + }; + buildPhase = "make"; + installPhase = '' + mkdir -p $out/bin + install -m755 ./zebra $out/bin + ''; +} |