vp: init at 1.8

+34
+27
pkgs/applications/misc/vp/default.nix
··· 1 + { stdenv, fetchFromGitHub, autoconf, automake, SDL, SDL_image }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "vp-${version}"; 5 + version = "1.8"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "erikg"; 9 + repo = "vp"; 10 + rev = "v${version}"; 11 + sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq"; 12 + }; 13 + 14 + buildInputs = [ SDL autoconf automake SDL_image ]; 15 + 16 + preConfigure = '' 17 + autoreconf -i 18 + ''; 19 + 20 + meta = with stdenv.lib; { 21 + homepage = http://brlcad.org/~erik/; 22 + description = "SDL based picture viewer/slideshow"; 23 + platforms = platforms.unix; 24 + license = licenses.gpl3; 25 + maintainers = [ maintainers.vrthra ]; 26 + }; 27 + }
+7
pkgs/top-level/all-packages.nix
··· 3744 3744 3745 3745 vpnc = callPackage ../tools/networking/vpnc { }; 3746 3746 3747 + vp = callPackage ../applications/misc/vp { 3748 + # Enable next line for console graphics. Note that 3749 + # it requires `sixel` enabled terminals such as mlterm 3750 + # or xterm -ti 340 3751 + SDL = SDL_sixel; 3752 + }; 3753 + 3747 3754 openconnect = openconnect_openssl; 3748 3755 3749 3756 openconnect_openssl = callPackage ../tools/networking/openconnect.nix {