2016-06-11 00:56:58 +01:00
|
|
|
{stdenv, fetchFromGitHub}:
|
|
|
|
stdenv.mkDerivation rec {
|
2018-08-09 17:30:25 +01:00
|
|
|
version = "1.8.2";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libsixel";
|
2016-06-11 00:56:58 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "libsixel";
|
2017-02-08 01:11:13 +00:00
|
|
|
rev = "v${version}";
|
2016-06-11 00:56:58 +01:00
|
|
|
owner = "saitoha";
|
2018-08-09 17:30:25 +01:00
|
|
|
sha256 = "1jn5z2ylccjkp9i12n5x53x2zzhhsgmgs6xxi7aja6qimfw90h1n";
|
2016-06-11 00:56:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2016-06-11 00:56:58 +01:00
|
|
|
};
|
|
|
|
}
|