Merge pull request #76329 from r-ryantm/auto-update/libsixel

libsixel: 1.8.2 -> 1.8.4
This commit is contained in:
Niklas Hambüchen 2020-01-16 03:12:30 +01:00 committed by GitHub
commit b2787a67a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,21 @@
{stdenv, fetchFromGitHub}: {stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.8.2"; version = "1.8.4";
pname = "libsixel"; pname = "libsixel";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "libsixel"; repo = "libsixel";
rev = "v${version}"; rev = "v${version}";
owner = "saitoha"; owner = "saitoha";
sha256 = "1jn5z2ylccjkp9i12n5x53x2zzhhsgmgs6xxi7aja6qimfw90h1n"; sha256 = "1zckahfl0j7k68jf87iwdc4yx7fkfhxwa7lrf22dnz36d2iq785v";
}; };
configureFlags = [
"--enable-tests"
];
doCheck = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "The SIXEL library for console graphics, and converter programs"; description = "The SIXEL library for console graphics, and converter programs";
homepage = http://saitoha.github.com/libsixel; homepage = http://saitoha.github.com/libsixel;