Adding jhead

svn path=/nixpkgs/trunk/; revision=17747
This commit is contained in:
Lluís Batlle i Rossell 2009-10-11 15:52:14 +00:00
parent 585654955f
commit ebe0bc809d
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "jhead-2.87";
src = fetchurl {
url = http://www.sentex.net/~mwandel/jhead/jhead-2.87.tar.gz;
sha256 = "0vpp5jz49w5qzjzq3vllrbff7fr906jy8a8sq12yq8kw6qwbjjsl";
};
patchPhase = ''
sed -i s@/usr/bin@$out/bin@ makefile
'';
preInstall = ''
ensureDir $out/bin
'';
meta = {
homepage = http://www.sentex.net/~mwandel/jhead/;
description = "Exif Jpeg header manipulation tool";
license = "free";
maintainers = with stdenv.lib.maintainers; [viric];
};
}

View File

@ -963,6 +963,10 @@ let
inherit fetchurl stdenv unzip jdk;
};
jhead = import ../tools/graphics/jhead {
inherit stdenv fetchurl;
};
jing = import ../tools/text/xml/jing {
inherit fetchurl stdenv unzip;
};