jp2a: 1.0.7 -> 1.1.0
This commit is contained in:
parent
51729ed349
commit
855e5119a2
@ -1,25 +1,43 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, libjpeg, autoreconfHook }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libjpeg
|
||||||
|
, libpng
|
||||||
|
, ncurses
|
||||||
|
, autoreconfHook
|
||||||
|
, autoconf-archive
|
||||||
|
, pkg-config
|
||||||
|
, bash-completion
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.0.7";
|
version = "1.1.0";
|
||||||
pname = "jp2a";
|
pname = "jp2a";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cslarsen";
|
owner = "Talinx";
|
||||||
repo = "jp2a";
|
repo = "jp2a";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "12a1z9ba2j16y67f41y8ax5sgv1wdjd71pg7circdxkj263n78ql";
|
sha256 = "1dz2mrhl45f0vwyfx7qc3665xma78q024c10lfsgn6farrr0c2lb";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ libjpeg ];
|
autoreconfHook
|
||||||
|
autoconf-archive
|
||||||
|
pkg-config
|
||||||
|
bash-completion
|
||||||
|
];
|
||||||
|
buildInputs = [ libjpeg libpng ncurses ];
|
||||||
|
|
||||||
|
installFlags = [ "bashcompdir=\${out}/share/bash-completion/completions" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://csl.name/jp2a/";
|
homepage = "https://csl.name/jp2a/";
|
||||||
description = "A small utility that converts JPG images to ASCII";
|
description = "A small utility that converts JPG images to ASCII";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Only;
|
||||||
|
maintainers = [ maintainers.FlorianFranzen ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user