add posix-array package
This commit is contained in:
parent
e38b8899e4
commit
1c08ba3213
@ -12,4 +12,5 @@ pkgs //
|
||||
github-hosts-sync = callPackage ./github-hosts-sync.nix {};
|
||||
github-known_hosts = callPackage ./github-known_hosts.nix {};
|
||||
hashPassword = callPackage ./hashPassword.nix {};
|
||||
posix-array = callPackage ./posix-array.nix {};
|
||||
}
|
||||
|
31
krebs/5pkgs/posix-array.nix
Normal file
31
krebs/5pkgs/posix-array.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user