mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Add libwnck3
svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33254
This commit is contained in:
parent
b113433d51
commit
abec146924
13
pkgs/development/libraries/libwnck/3.x.nix
Normal file
13
pkgs/development/libraries/libwnck/3.x.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{stdenv, fetchurl, pkgconfig, libX11, gtk3, intltool}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libwnck-3.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://gnome/sources/libwnck/3.2/libwnck-3.2.1.tar.xz;
|
||||
sha256 = "1nm34rpr0n559x1ba4kmxbhqclvvnlz0g8xqbbj709q9irnmifpa";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig intltool ];
|
||||
propagatedBuildInputs = [ libX11 gtk3 ];
|
||||
}
|
|
@ -4244,6 +4244,7 @@ let
|
|||
libwmf = callPackage ../development/libraries/libwmf { };
|
||||
|
||||
libwnck = callPackage ../development/libraries/libwnck { };
|
||||
libwnck3 = callPackage ../development/libraries/libwnck/3.x.nix { };
|
||||
|
||||
libwpd = callPackage ../development/libraries/libwpd { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue