* Added par2cmdline.

svn path=/nixpkgs/trunk/; revision=583
wip/yesman
Eelco Dolstra 21 years ago
parent f1279496e5
commit 4b283d3de7
  1. 5
      pkgs/system/all-packages-generic.nix
  2. 9
      pkgs/tools/networking/par2cmdline/builder.sh
  3. 10
      pkgs/tools/networking/par2cmdline/default.nix

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

@ -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

@ -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;
}
Loading…
Cancel
Save