summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/posix-array.nix
blob: 456a3cc116ea1b7ab296ebbec9f3ee334aa86241 (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
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 ];
  };
}