nixpkgs/pkgs/development/libraries/libsixel/default.nix

21 lines
563 B
Nix
Raw Normal View History

{stdenv, fetchFromGitHub}:
stdenv.mkDerivation rec {
version = "1.8.1";
name = "libsixel-${version}";
src = fetchFromGitHub {
repo = "libsixel";
2017-02-08 01:11:13 +00:00
rev = "v${version}";
owner = "saitoha";
sha256 = "0cbhvd1yk0q08nxva5bga7bpp8yxjfdfnqicvip4l6k28mzz7pmf";
};
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;
platforms = with platforms; unix;
};
}