about summary refs log tree commit diff
path: root/pkgs/tools/graphics/jpegexiforient/default.nix
blob: 9397f46fd2c5f334e65f2390f4dc56cea3ef1e2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation {
  pname = "jpegexiforient";
  version = "unstable-2002-02-17";
  src = fetchurl {
    url = "http://sylvana.net/jpegcrop/jpegexiforient.c";
    sha256 = "1v0f42cvs0397g9v46p294ldgxwbp285npg6npgnlnvapk6nzh5s";
  };
  unpackPhase = ''
    cp $src jpegexiforient.c
  '';
  buildPhase = ''
    cc -o jpegexiforient jpegexiforient.c
  '';
  installPhase = ''
    install -Dt $out/bin jpegexiforient
  '';
  meta = with lib; {
    description = "Utility program to get and set the Exif Orientation Tag";
    homepage = "http://sylvana.net/jpegcrop/exif_orientation.html";
    # Website doesn't mention any license, but I think it's safe to assume this
    # to be free since it's from IJG, the current maintainers of libjpeg
    license = licenses.free;
    platforms = platforms.all;
    maintainers = with maintainers; [ infinisil ];
  };
}