1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 12:59:25 +00:00
nixpkgs/pkgs/development/tools/build-managers/kati/default.nix

27 lines
611 B
Nix
Raw Normal View History

2017-05-31 01:16:16 +01:00
{ fetchgit, stdenv }:
stdenv.mkDerivation rec {
pname = "kati-unstable";
2017-05-31 01:16:16 +01:00
version = "2017-05-23";
rev = "2dde61e46ab789f18956ff3b7c257dd8eb97993f";
src = fetchgit {
inherit rev;
url = "https://github.com/google/kati.git";
sha256 = "1das1fvycra546lmh72cr5qpgblhbzqqy7gfywiijjgx160l75vq";
};
patches = [ ./version.patch ];
installPhase = ''
install -D ckati $out/bin/ckati
'';
meta = {
description = "An experimental GNU make clone";
homepage = https://github.com/google/kati;
2017-05-31 01:16:16 +01:00
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.asl20;
};
}