2016-06-10 23:56:58 +00:00
|
|
|
{stdenv, fetchFromGitHub}:
|
|
|
|
stdenv.mkDerivation rec {
|
2017-02-08 01:11:13 +00:00
|
|
|
version = "1.7.3";
|
2016-06-10 23:56:58 +00:00
|
|
|
name = "libsixel-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "libsixel";
|
2017-02-08 01:11:13 +00:00
|
|
|
rev = "v${version}";
|
2016-06-10 23:56:58 +00:00
|
|
|
owner = "saitoha";
|
2017-02-08 01:11:13 +00:00
|
|
|
sha256 = "1hzmypzzigmxl07vgc52wp4dgxkhya3gfk4yzaaxc8s630r6ixs8";
|
2016-06-10 23:56:58 +00: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 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2016-06-10 23:56:58 +00:00
|
|
|
};
|
|
|
|
}
|