blob: cfcdb29a74109c03cebc1dcb30912107e064c3ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{ fetchgit, lib, stdenv, ... }:
stdenv.mkDerivation rec {
name = "posix-array-${version}";
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
'';
meta = {
description = "POSIX-compliant array implementation";
url = https://github.com/makefu/array;
license = lib.licenses.wtfpl;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ makefu ];
};
}
|