summary refs log tree commit diff
path: root/pkgs/development/libraries/libsixel/default.nix
blob: 86f6a7f247984cf5c9a188d50a1c5ce921625391 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
  version = "1.6.1";
  name = "libsixel-${version}";

  src = fetchFromGitHub {
    repo = "libsixel";
    rev = "ef4374f80385edc48e0844cf324d7ef757688e44";
    owner = "saitoha";
    sha256 = "08m5q2ppk235bzbwff1wg874vr1bh4080qdj26l39v8lw1xzlqcp";
  };

  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;
  };
}