1{stdenv, fetchFromGitHub}:
2stdenv.mkDerivation rec {
3 version = "1.8.2";
4 name = "libsixel-${version}";
5
6 src = fetchFromGitHub {
7 repo = "libsixel";
8 rev = "v${version}";
9 owner = "saitoha";
10 sha256 = "1jn5z2ylccjkp9i12n5x53x2zzhhsgmgs6xxi7aja6qimfw90h1n";
11 };
12
13 meta = with stdenv.lib; {
14 description = "The SIXEL library for console graphics, and converter programs";
15 homepage = http://saitoha.github.com/libsixel;
16 maintainers = with maintainers; [ vrthra ];
17 license = licenses.mit;
18 platforms = with platforms; unix;
19 };
20}