nixpkgs/pkgs/development/libraries/libsixel/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

21 lines
592 B
Nix

{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;
platforms = with platforms; unix;
};
}