diff options
author | tv <tv@shackspace.de> | 2015-08-29 00:36:50 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-08-29 00:36:50 +0200 |
commit | 22a171f3e0405d504e8c8c3b32f73a8087a5ed66 (patch) | |
tree | 12d41954273e34f06cfbcf6e12f7fb64c7db2b4d /krebs/5pkgs/posix-array | |
parent | 09257f97823e9a57cda749c2d5a69b18ef484cec (diff) |
krebs pkgs += charybdis lentil much
While there, put everything into subdirectories.
Diffstat (limited to 'krebs/5pkgs/posix-array')
-rw-r--r-- | krebs/5pkgs/posix-array/default.nix | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/krebs/5pkgs/posix-array/default.nix b/krebs/5pkgs/posix-array/default.nix new file mode 100644 index 000000000..456a3cc11 --- /dev/null +++ b/krebs/5pkgs/posix-array/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchgit, ... }: + +with stdenv; stdenv.mkDerivation rec { + name = "posix-array"; + version = "1.0.0"; + + src = fetchgit { + url = https://github.com/makefu/array.git; + rev = "refs/tags/${version}"; + sha256 = "0yzwlhdg1rgc4p64ny7gj30l7z6vikhskhppsa2qj7s9gm2gz938"; + }; + + phases = [ + "unpackPhase" + "installPhase" + ]; + + installPhase = '' + mkdir -p "$out/bin" + cp -a ./array $out/bin + rm * + ''; + + meta = { + description = "Posix-compliant array implementation"; + url = https://github.com/makefu/array; + license = licenses.wtfpl; + platforms = platforms.unix; + maintainers = with maintainers; [ makefu ]; + }; +} |