nixpkgs-suyu/pkgs/development/tools/build-managers/kati/default.nix

28 lines
651 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub }:
2017-05-31 02:16:16 +02:00
stdenv.mkDerivation {
pname = "kati-unstable";
version = "2019-09-23";
2017-05-31 02:16:16 +02:00
src = fetchFromGitHub {
owner = "google";
repo = "kati";
rev = "9da3296746a0cd55b38ebebf91e7f57105a4c36f";
sha256 = "0s5dfhgpcbx12b1fqmm8p0jpvrhgrnl9qywv1ksbwhw3pfp7j866";
2017-05-31 02:16:16 +02:00
};
patches = [ ./version.patch ];
installPhase = ''
install -D ckati $out/bin/ckati
'';
meta = with stdenv.lib; {
2017-05-31 02:16:16 +02:00
description = "An experimental GNU make clone";
homepage = "https://github.com/google/kati";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ danielfullmer ];
2017-05-31 02:16:16 +02:00
};
}