mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Add gnome3.caribou
This commit is contained in:
parent
55e6303d6a
commit
35e76926a5
27
pkgs/desktops/gnome-3/core/caribou/default.nix
Normal file
27
pkgs/desktops/gnome-3/core/caribou/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2
|
||||
, libxklavier, libXtst, gtk2, intltool, libxslt }:
|
||||
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "caribou-0.4.12";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/caribou/0.4/${name}.tar.xz";
|
||||
sha256 = "0235sws58rg0kadxbp2nq5ha76zmhd4mr10n9qlbryf8p78qsvii";
|
||||
};
|
||||
|
||||
buildInputs = with gnome3;
|
||||
[ glib pkgconfig gtk clutter at_spi2_core dbus pythonPackages.python pythonPackages.pygobject3
|
||||
libxml2 libXtst gtk2 intltool libxslt ];
|
||||
|
||||
propagatedBuildInputs = [ gnome3.libgee libxklavier ];
|
||||
|
||||
preBuild = ''
|
||||
patchShebangs .
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
|
||||
}
|
@ -18,6 +18,8 @@ rec {
|
||||
|
||||
at_spi2_core = callPackage ./core/at-spi2-core { };
|
||||
|
||||
caribou = callPackage ./core/caribou { };
|
||||
|
||||
dconf = callPackage ./core/dconf { };
|
||||
|
||||
evince = callPackage ./core/evince { }; # ToDo: dbus would prevent compilation, enable tests
|
||||
|
Loading…
Reference in New Issue
Block a user