about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/graphics/jpeginfo/default.nix
blob: f438bf6f7ed88004ac7c6d998816674b9238d83e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, libjpeg }:

stdenv.mkDerivation rec {
  name = "jpeginfo-${version}";
  version = "1.6.1";

  src = fetchurl {
    url = "https://www.kokkonen.net/tjko/src/${name}.tar.gz";
    sha256 = "0lvn3pnylyj56158d3ix9w1gas1s29klribw9bz1xym03p7k37k2";
  };

  buildInputs = [ libjpeg ];

  meta = with stdenv.lib; {
    description = "Prints information and tests integrity of JPEG/JFIF files";
    homepage = "https://www.kokkonen.net/tjko/projects.html";
    license = licenses.gpl2Plus;
    maintainers = [ maintainers.bjornfor ];
    platforms = platforms.all;
  };
}