nixpkgs/pkgs/tools/text/patchutils/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

20 lines
607 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation {
name = "patchutils-0.3.0";
src = fetchurl {
url = http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.3.0.tar.bz2;
sha256 = "08jzvprhpcgwvx0xlkwc8dbdd9ilvwyr3cwnq96xmbfipch69yi7";
};
meta = {
description = "Tools to manipulate patch files";
homepage = http://cyberelk.net/tim/software/patchutils;
license = "GPLv2";
executables = [ "combinediff" "dehtmldiff" "editdiff" "espdiff"
"filterdiff" "fixcvsdiff" "flipdiff" "grepdiff" "interdiff" "lsdiff"
"recountdiff" "rediff" "splitdiff" "unwrapdiff" ];
};
}