nixpkgs/pkgs/development/libraries/libsixel/default.nix

27 lines
620 B
Nix
Raw Normal View History

{stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
2019-12-23 23:37:30 +00:00
version = "1.8.4";
pname = "libsixel";
src = fetchFromGitHub {
repo = "libsixel";
2017-02-08 01:11:13 +00:00
rev = "v${version}";
owner = "saitoha";
2019-12-23 23:37:30 +00:00
sha256 = "1zckahfl0j7k68jf87iwdc4yx7fkfhxwa7lrf22dnz36d2iq785v";
};
configureFlags = [
"--enable-tests"
];
doCheck = true;
meta = with stdenv.lib; {
description = "The SIXEL library for console graphics, and converter programs";
homepage = http://saitoha.github.com/libsixel;
maintainers = with maintainers; [ vrthra ];
license = licenses.mit;
platforms = with platforms; unix;
};
}