1{stdenv, fetchFromGitHub}:
2stdenv.mkDerivation rec {
3 version = "1.7.3";
4 name = "libsixel-${version}";
5
6 src = fetchFromGitHub {
7 repo = "libsixel";
8 rev = "v${version}";
9 owner = "saitoha";
10 sha256 = "1hzmypzzigmxl07vgc52wp4dgxkhya3gfk4yzaaxc8s630r6ixs8";
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}