lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 27 lines 649 B view raw
1{ lib, stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation { 4 pname = "kati-unstable"; 5 version = "2019-09-23"; 6 7 src = fetchFromGitHub { 8 owner = "google"; 9 repo = "kati"; 10 rev = "9da3296746a0cd55b38ebebf91e7f57105a4c36f"; 11 sha256 = "0s5dfhgpcbx12b1fqmm8p0jpvrhgrnl9qywv1ksbwhw3pfp7j866"; 12 }; 13 14 patches = [ ./version.patch ]; 15 16 installPhase = '' 17 install -D ckati $out/bin/ckati 18 ''; 19 20 meta = with lib; { 21 description = "An experimental GNU make clone"; 22 homepage = "https://github.com/google/kati"; 23 platforms = platforms.all; 24 license = licenses.asl20; 25 maintainers = with maintainers; [ danielfullmer ]; 26 }; 27}