mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
f5fa5fa4d6
* 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
24 lines
608 B
Nix
24 lines
608 B
Nix
{ fetchgit, stdenv, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "git2cl-20080827";
|
|
|
|
src = fetchgit {
|
|
url = "git://repo.or.cz/git2cl.git";
|
|
rev = "8373c9f74993e218a08819cbcdbab3f3564bbeba";
|
|
sha256 = "b0d39379640c8a12821442431e2121f7908ce1cc88ec8ec6bede218ea8c21f2f";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
installPhase = ''
|
|
install -D -m755 git2cl $out/bin/git2cl
|
|
install -D -m644 README $out/share/doc/git2cl/README
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://josefsson.org/git2cl/;
|
|
description = "Convert git logs to GNU style ChangeLog files";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|