mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
Added wv2 library
svn path=/nixpkgs/trunk/; revision=15777
This commit is contained in:
parent
5990b0d95f
commit
5239d4b26b
10
pkgs/tools/misc/wv2/default.nix
Normal file
10
pkgs/tools/misc/wv2/default.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl, pkgconfig, libgsf, glib, libxml2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "wv2-0.3.1";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/wvware/wv2-0.3.1.tar.bz2;
|
||||
sha256 = "896ff8ec59e280e8cb1ef9a953b364845dd65de1cdf8e4ed8a7e045a3f81c546";
|
||||
};
|
||||
buildInputs = [ pkgconfig libgsf glib libxml2 ];
|
||||
}
|
@ -1443,6 +1443,11 @@ let
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
wv2 = import ../tools/misc/wv2 {
|
||||
inherit stdenv fetchurl pkgconfig libgsf libxml2;
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
x11_ssh_askpass = import ../tools/networking/x11-ssh-askpass {
|
||||
inherit fetchurl stdenv x11;
|
||||
inherit (xorg) imake;
|
||||
|
Loading…
Reference in New Issue
Block a user