Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / SDL_sixel / default.nix
blob1bc4c8ba35c04238a97d3ea48c46dc79fb78e31d
1 { lib, stdenv, fetchFromGitHub, pkg-config, libsixel }:
3 stdenv.mkDerivation {
4   pname = "SDL_sixel";
5   version = "1.2-nightly";
7   src = fetchFromGitHub {
8     owner = "saitoha";
9     repo = "SDL1.2-SIXEL";
10     rev = "ab3fccac6e34260a617be511bd8c2b2beae41952";
11     sha256 = "0gm2vngdac17lzw9azkhzazmfq3byjddms14gqjk18vnynfqp5wp";
12   };
14   configureFlags = [ "--enable-video-sixel" ];
16   nativeBuildInputs = [ pkg-config ];
17   buildInputs = [ libsixel ];
19   meta = with lib; {
20     description = "A cross-platform multimedia library, that supports sixel graphics on consoles";
21     homepage    = "https://github.com/saitoha/SDL1.2-SIXEL";
22     maintainers = with maintainers; [ vrthra ];
23     platforms   = platforms.linux;
24     license     = licenses.lgpl21;
25   };