nixpkgs/pkgs/development/tools/build-managers/kati/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

27 lines
621 B
Nix

{ 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;
};
}