2008-12-22 19:36:02 +01:00
|
|
|
# This package is only used to create the documentation of zsh-cvs
|
|
|
|
# eg have a look at http://www.zsh.org/mla/users/2008/msg00715.html
|
|
|
|
# latest release is newer though
|
2010-07-28 13:55:54 +02:00
|
|
|
|
|
|
|
{ stdenv, fetchurl, perl }:
|
|
|
|
|
2008-12-22 19:36:02 +01:00
|
|
|
stdenv.mkDerivation {
|
2009-05-10 22:16:33 +02:00
|
|
|
name = "yodl-2.14.3";
|
2008-12-22 19:36:02 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
buildInputs = [ perl ];
|
2008-12-22 19:36:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-05-10 22:16:33 +02:00
|
|
|
url = "mirror://sourceforge/yodl/yodl_2.14.3.orig.tar.gz";
|
|
|
|
sha256 = "0paypm76p34hap3d18vvks5rrilchcw6q56rvq6pjf9raqw8ynd4";
|
2008-12-22 19:36:02 +01:00
|
|
|
};
|
2010-07-28 13:55:54 +02:00
|
|
|
|
|
|
|
patches =
|
|
|
|
[ (fetchurl {
|
|
|
|
url = "mirror://sourceforge/yodl/yodl_2.14.3-1.diff.gz";
|
|
|
|
sha256 = "176hlbiidv7p9051f04anzj4sr9dwlp9439f9mjvvgks47ac0qx4";
|
|
|
|
})
|
|
|
|
];
|
2008-12-22 19:36:02 +01:00
|
|
|
|
|
|
|
# This doesn't isntall docs yet, do you need them?
|
|
|
|
installPhase = ''
|
|
|
|
# -> $out
|
|
|
|
sed -i "s@'/usr/@'$out/@" contrib/build.pl
|
|
|
|
perl contrib/build.pl make-software
|
|
|
|
perl contrib/build.pl install-software
|
|
|
|
'';
|
|
|
|
}
|