jpeginfo: init at 1.6.1
jpeginfo prints information and tests integrity of JPEG/JFIF files.
This commit is contained in:
parent
fc459de60e
commit
84a2463499
21
pkgs/applications/graphics/jpeginfo/default.nix
Normal file
21
pkgs/applications/graphics/jpeginfo/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
@ -3558,6 +3558,8 @@ with pkgs;
|
|||||||
|
|
||||||
jp2a = callPackage ../applications/misc/jp2a { };
|
jp2a = callPackage ../applications/misc/jp2a { };
|
||||||
|
|
||||||
|
jpeginfo = callPackage ../applications/graphics/jpeginfo { };
|
||||||
|
|
||||||
jpegoptim = callPackage ../applications/graphics/jpegoptim { };
|
jpegoptim = callPackage ../applications/graphics/jpegoptim { };
|
||||||
|
|
||||||
jpegrescan = callPackage ../applications/graphics/jpegrescan { };
|
jpegrescan = callPackage ../applications/graphics/jpegrescan { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user