nixpkgs/pkgs/tools/graphics/exiftags/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

26 lines
571 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "exiftags-1.01";
src = fetchurl {
url = http://johnst.org/sw/exiftags/exiftags-1.01.tar.gz;
sha256 = "194ifl6hybx2a5x8jhlh9i56k3qfc6p2l72z0ii1b7v0bzg48myr";
};
patchPhase = ''
sed -i -e s@/usr/local@$out@ Makefile
'';
preInstall = ''
mkdir -p $out/bin $out/man/man1
'';
meta = {
homepage = http://johnst.org/sw/exiftags/;
description = "Displays EXIF data from JPEG files";
license = stdenv.lib.licenses.free;
maintainers = with stdenv.lib.maintainers; [viric];
};
}