nixpkgs/pkgs/applications/misc/xsw/default.nix

36 lines
890 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, pkg-config, SDL, SDL_image, SDL_ttf, SDL_gfx, flex, bison }:
2016-06-28 20:25:48 +00:00
2016-08-27 21:57:49 +00:00
let
makeSDLFlags = map (p: "-I${lib.getDev p}/include/SDL");
in stdenv.mkDerivation rec {
pname = "xsw";
2016-06-28 20:25:48 +00:00
version = "0.1.2";
src = fetchFromGitHub {
owner = "andrenho";
repo = "xsw";
rev = version;
sha256 = "092vp61ngd2vscsvyisi7dv6qrk5m1i81gg19hyfl5qvjq5p0p8g";
};
nativeBuildInputs = [ pkg-config flex bison ];
2016-08-27 21:57:49 +00:00
buildInputs = [ SDL SDL_image SDL_ttf SDL_gfx ];
2016-08-27 21:57:49 +00:00
2019-10-30 11:34:47 +00:00
NIX_CFLAGS_COMPILE = toString (makeSDLFlags [ SDL SDL_image SDL_ttf SDL_gfx ]);
2016-06-28 20:25:48 +00:00
patches = [
./parse.patch # Fixes compilation error by avoiding redundant definitions.
];
meta = with lib; {
2016-06-28 20:25:48 +00:00
inherit (src.meta) homepage;
description = "A slide show presentation tool";
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = [ maintainers.vrthra ];
};
}