evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sd / SDL_sixel / package.nix
blobc4e383183bec10acf27ed840bed086bd589f68d4
2   lib,
3   fetchFromGitHub,
4   libsixel,
5   pkg-config,
6   stdenv,
7 }:
9 stdenv.mkDerivation {
10   pname = "SDL_sixel";
11   version = "0-unstable-2016-02-06";
13   src = fetchFromGitHub {
14     owner = "saitoha";
15     repo = "SDL1.2-SIXEL";
16     rev = "ab3fccac6e34260a617be511bd8c2b2beae41952";
17     hash = "sha256-l5eLnfV2ozAlfiTo2pr0a2BXv/pwfpX4pycw1Z7doj4=";
18   };
20   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [ libsixel ];
24   configureFlags = [
25     (lib.enableFeature true "video-sixel")
26   ];
28   strictDeps = true;
30   meta = {
31     homepage = "https://github.com/saitoha/SDL1.2-SIXEL";
32     description = "SDL 1.2 patched with libsixel support";
33     license = lib.licenses.lgpl21;
34     mainProgram = "sdl-config";
35     maintainers = lib.teams.sdl.members
36                   ++ (with lib.maintainers; [ ]);
37     platforms = lib.platforms.linux;
38   };