forked from mirrors/nixpkgs
added yodl, dependency for zsh documentation
svn path=/nixpkgs/trunk/; revision=13669
This commit is contained in:
parent
a8e0eae74b
commit
1b30419aa6
23
pkgs/development/tools/misc/yodl/default.nix
Normal file
23
pkgs/development/tools/misc/yodl/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
# 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
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "yodl-2.13.2";
|
||||
|
||||
buildInputs = [perl];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sourceforge/yodl/yodl_2.13.2.orig.tar.gz";
|
||||
sha256 = "07zzyx8vf27y3p549qza0pqrb61hfh0gynxqb8i1cghjmxhrlxj3";
|
||||
};
|
||||
# maybe apply diff?
|
||||
|
||||
# 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
|
||||
'';
|
||||
}
|
|
@ -2583,6 +2583,10 @@ let
|
|||
|
||||
yacc = bison;
|
||||
|
||||
yodl = import ../development/tools/misc/yodl {
|
||||
inherit stdenv fetchurl perl;
|
||||
};
|
||||
|
||||
|
||||
### DEVELOPMENT / LIBRARIES
|
||||
|
||||
|
|
Loading…
Reference in a new issue