about summary refs log tree commit diff
path: root/pkgs/applications/misc/acbuild/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/acbuild/default.nix')
-rw-r--r--pkgs/applications/misc/acbuild/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/misc/acbuild/default.nix b/pkgs/applications/misc/acbuild/default.nix
new file mode 100644
index 000000000000..3c8f4f335f26
--- /dev/null
+++ b/pkgs/applications/misc/acbuild/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, lib, go, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "acbuild-${version}";
+  version = "0.2.2";
+
+  src = fetchFromGitHub {
+    owner = "appc";
+    repo = "acbuild";
+    rev = "v${version}";
+    sha256 = "0sajmjg655irwy5fywk88cmwhc1q186dg5w8589pab2jhwpavdx4";
+  };
+
+  buildInputs = [ go ];
+
+  patchPhase = ''
+    sed -i -e 's|\$(git describe --dirty)|"${version}"|' build
+  '';
+
+  buildPhase = ''
+    patchShebangs build
+    ./build
+  '';
+
+  installPhase = ''
+    mkdir -p $out
+    mv bin $out
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A build tool for ACIs";
+    homepage = https://github.com/appc/acbuild;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ dgonyeo ];
+    platforms = platforms.linux;
+  };
+}