677be83122
* Fixes to make par2cmdline and exult build on gcc 4.x, since gcc 3.4.x doesn't seem to work on x86_64-linux (NIXPKGS-91). * Disabled pidgin on x86_64-linux because it needs a dynamic libperl which we don't have right now. * Disabled wine on x86_64-linux because we still lack -m32 support. svn path=/nixpkgs/trunk/; revision=12187
23 lines
631 B
Nix
23 lines
631 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "par2cmdline-0.4";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/parchive/par2cmdline-0.4.tar.gz;
|
|
md5 = "1551b63e57e3c232254dc62073b723a9";
|
|
};
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/app-arch/par2cmdline/files/par2cmdline-0.4-gcc4.patch?rev=1.1.1.1";
|
|
sha256 = "1xrkr13qw5vqi2qbr2p43nqbq83nywk4bgvq7nfvrca4z60s787d";
|
|
})
|
|
];
|
|
|
|
meta = {
|
|
homepage = http://parchive.sourceforge.net/;
|
|
description = "A command-line tool for repairing downloaded files using PARs (parity archives)";
|
|
};
|
|
}
|