nixpkgs/pkgs/tools/graphics/exiftags/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

27 lines
621 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "exiftags-1.01";
src = fetchurl {
url = https://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];
platforms = with stdenv.lib.platforms; unix;
};
}