diffutils: minor stable update 3.2 -> 3.3

This commit is contained in:
Vladimír Čunát
2013-06-30 08:58:51 +02:00
parent 08882c4700
commit f4ec2a3090
2 changed files with 4 additions and 77 deletions

View File

@@ -1,15 +1,13 @@
{ stdenv, fetchurl, coreutils ? null }:
stdenv.mkDerivation {
name = "diffutils-3.2";
stdenv.mkDerivation rec {
name = "diffutils-3.3";
src = fetchurl {
url = mirror://gnu/diffutils/diffutils-3.2.tar.gz;
sha256 = "1lsf0ln0h3mnm2y0mwgrfk0lyfi7bnm4r886acvdrrsvc7pypaia";
url = "mirror://gnu/diffutils/${name}.tar.xz";
sha256 = "1761vymxbp4wb5rzjvabhdkskk95pghnn67464byvzb5mfl8jpm2";
};
patches = [ ./gets-undeclared.patch ];
/* If no explicit coreutils is given, use the one from stdenv. */
nativeBuildInputs = [ coreutils ];