nixpkgs/pkgs/development/libraries/libsixel/default.nix
2021-02-01 16:42:41 +01:00

31 lines
800 B
Nix

{lib, stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
version = "1.8.6";
pname = "libsixel";
src = fetchFromGitHub {
repo = "libsixel";
rev = "v${version}";
owner = "saitoha";
sha256 = "1saxdj6sldv01g6w6yk8vr7px4bl31xca3a82j6v1j3fw5rbfphy";
};
configureFlags = [
"--enable-tests"
];
doCheck = true;
meta = with 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;
knownVulnerabilities = [
"CVE-2020-11721" # https://github.com/saitoha/libsixel/issues/134
"CVE-2020-19668" # https://github.com/saitoha/libsixel/issues/136
];
};
}