kati: init at 2017-05-23 (#26168)

This commit is contained in:
Gabriel Gonzalez
2017-05-31 02:16:16 +02:00
committed by Franz Pletz
parent 47d038c21d
commit 0dd5e832f0
3 changed files with 47 additions and 0 deletions
@@ -0,0 +1,26 @@
{ fetchgit, stdenv }:
stdenv.mkDerivation rec {
name = "kati-unstable-${version}";
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";
platforms = stdenv.lib.platforms.all;
license = stdenv.lib.licenses.asl20;
};
}