forked from mirrors/nixpkgs
vp: init at 1.8
This commit is contained in:
parent
323eb06499
commit
6904030b42
27
pkgs/applications/misc/vp/default.nix
Normal file
27
pkgs/applications/misc/vp/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchFromGitHub, autoconf, automake, SDL, SDL_image }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vp-${version}";
|
||||
version = "1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "erikg";
|
||||
repo = "vp";
|
||||
rev = "v${version}";
|
||||
sha256 = "08q6xrxsyj6vj0sz59nix9isqz84gw3x9hym63lz6v8fpacvykdq";
|
||||
};
|
||||
|
||||
buildInputs = [ SDL autoconf automake SDL_image ];
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf -i
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://brlcad.org/~erik/;
|
||||
description = "SDL based picture viewer/slideshow";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.vrthra ];
|
||||
};
|
||||
}
|
|
@ -3744,6 +3744,13 @@ in
|
|||
|
||||
vpnc = callPackage ../tools/networking/vpnc { };
|
||||
|
||||
vp = callPackage ../applications/misc/vp {
|
||||
# Enable next line for console graphics. Note that
|
||||
# it requires `sixel` enabled terminals such as mlterm
|
||||
# or xterm -ti 340
|
||||
SDL = SDL_sixel;
|
||||
};
|
||||
|
||||
openconnect = openconnect_openssl;
|
||||
|
||||
openconnect_openssl = callPackage ../tools/networking/openconnect.nix {
|
||||
|
|
Loading…
Reference in a new issue