2011-08-23 10:44:59 +02:00
|
|
|
{ fetchgit, stdenv, perl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-05-04 12:06:50 +02:00
|
|
|
name = "git2cl";
|
|
|
|
|
|
|
|
src = fetchgit {
|
2011-08-23 10:44:59 +02:00
|
|
|
url = "git://repo.or.cz/git2cl.git";
|
2010-05-04 12:06:50 +02:00
|
|
|
rev = "8373c9f74993e218a08819cbcdbab3f3564bbeba";
|
|
|
|
sha256 = "b0d39379640c8a12821442431e2121f7908ce1cc88ec8ec6bede218ea8c21f2f";
|
|
|
|
};
|
|
|
|
|
2011-08-23 10:44:59 +02:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
installPhase = ''
|
|
|
|
install -D -m755 git2cl $out/bin/git2cl
|
|
|
|
install -D -m644 README $out/share/doc/git2cl/README
|
2010-05-04 12:06:50 +02:00
|
|
|
'';
|
2011-08-23 10:44:59 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://josefsson.org/git2cl/";
|
|
|
|
description = "convert git logs to GNU style ChangeLog files";
|
|
|
|
};
|
2010-05-04 12:06:50 +02:00
|
|
|
}
|