nixpkgs/pkgs/applications/misc/acbuild/default.nix

38 lines
761 B
Nix
Raw Normal View History

{ stdenv, lib, go, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "acbuild-${version}";
2016-08-10 21:39:30 +01:00
version = "0.4.0";
src = fetchFromGitHub {
owner = "appc";
repo = "acbuild";
rev = "v${version}";
2016-08-10 21:39:30 +01:00
sha256 = "0s81xlaw75d05b4cidxml978hnxak8parwpnk9clanwqjbj66c7x";
};
buildInputs = [ go ];
patchPhase = ''
2016-05-26 19:34:41 +01:00
sed -i -e 's|\git describe --dirty|echo "${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;
};
}