Adding the Oxygen-GTK theme
svn path=/nixpkgs/trunk/; revision=25676
This commit is contained in:
parent
2088daff1a
commit
5f3455dde5
20
pkgs/misc/themes/gtk2/oxygen-gtk/default.nix
Normal file
20
pkgs/misc/themes/gtk2/oxygen-gtk/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ stdenv, fetchurl,
|
||||||
|
cmake, glib, gtk, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "oxygen-gtk";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://kde/stable/${name}/${version}/src/${name}-${version}.tar.bz2";
|
||||||
|
sha256 = "0ki8qllr5ai48bl2pz8rxzf5cax08ckhgrn0nlf815ba83jfar32";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ cmake glib gtk pkgconfig ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Port of the default KDE widget theme (Oxygen), to gtk";
|
||||||
|
homepage = https://projects.kde.org/projects/playground/artwork/oxygen-gtk;
|
||||||
|
licence = "LGPLv2";
|
||||||
|
};
|
||||||
|
}
|
@ -7158,6 +7158,10 @@ let
|
|||||||
pkgs_for_46.newScope pkgs_for_46.kde46;
|
pkgs_for_46.newScope pkgs_for_46.kde46;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
oxygen_gtk = callPackage ../misc/themes/gtk2/oxygen-gtk {
|
||||||
|
inherit (gtkLibs) glib gtk;
|
||||||
|
};
|
||||||
|
|
||||||
xfce = xfce4;
|
xfce = xfce4;
|
||||||
|
|
||||||
xfce4 = recurseIntoAttrs
|
xfce4 = recurseIntoAttrs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user