python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / vp / default.nix
blobd133331a0a7b93c8a72fb3809a78c46c1d374974
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, SDL, SDL_image }:
3 stdenv.mkDerivation rec {
4   pname = "vp";
5   version = "1.8";
7   src = fetchFromGitHub {
8     owner = "erikg";
9     repo = "vp";
10     rev = "v${version}";
11     sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   buildInputs = [ SDL SDL_image ];
18   NIX_CFLAGS_COMPILE="-I${SDL}/include/SDL -I${SDL_image}/include/SDL";
20   meta = with lib; {
21     homepage = "https://brlcad.org/~erik/";
22     description = "SDL based picture viewer/slideshow";
23     platforms = platforms.unix;
24     license  = licenses.gpl3;
25     maintainers = [ maintainers.vrthra ];
26   };