* Added par2cmdline.

svn path=/nixpkgs/trunk/; revision=583
gstqt5
Eelco Dolstra 2003-12-14 20:36:43 +00:00
parent f1279496e5
commit 4b283d3de7
3 changed files with 24 additions and 0 deletions

View File

@ -93,6 +93,11 @@
stdenv = stdenv;
};
par2cmdline = (import ../tools/networking/par2cmdline) {
fetchurl = fetchurl;
stdenv = stdenv;
};
graphviz = (import ../tools/graphics/graphviz) {
fetchurl = fetchurl;
stdenv = stdenv;

View File

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

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl}: derivation {
name = "par2cmdline-0.3";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/parchive/par2cmdline-0.3.tar.gz;
md5 = "705c97bc41b862d281dd41c219a60849";
};
stdenv = stdenv;
}