* I can't believe that anybody is still using `ed', but there you

have it...

svn path=/nixpkgs/trunk/; revision=327
gstqt5
Eelco Dolstra 2003-08-19 15:05:02 +00:00
parent 4ec5cab7a5
commit 11b6d0629a
4 changed files with 24 additions and 0 deletions

9
pkgs/ed/ed-build.sh Executable file
View File

@ -0,0 +1,9 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd ed-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

13
pkgs/ed/ed.fix Normal file
View File

@ -0,0 +1,13 @@
Package(
[ ("name", "ed-0.2")
, ("build", Relative("ed/ed-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.gnu.org/pub/gnu/ed/ed-0.2.tar.gz")
, ("md5", "ddd57463774cae9b50e70cd51221281b")
]))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
]
)

View File

@ -2,6 +2,7 @@
envpkgs="$freetype $expat"
. $stdenv/setup || exit 1
export PATH=$ed/bin:$PATH
tar xvfz $src || exit 1
cd fcpackage*/fontconfig || exit 1

View File

@ -11,5 +11,6 @@ Package(
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
, ("freetype", IncludeFix("freetype/freetype.fix"))
, ("expat", IncludeFix("expat/expat.fix"))
, ("ed", IncludeFix("ed/ed.fix"))
]
)