Author: cillian
Date: Sun Jan 23 21:04:12 2011
New Revision: 25676
URL: https://svn.nixos.org/websvn/nix/?rev=25676&sc=1

Log:
Adding the Oxygen-GTK theme

Added:
   nixpkgs/trunk/pkgs/misc/themes/
   nixpkgs/trunk/pkgs/misc/themes/gtk2/
   nixpkgs/trunk/pkgs/misc/themes/gtk2/oxygen-gtk/
   nixpkgs/trunk/pkgs/misc/themes/gtk2/oxygen-gtk/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/all-packages.nix

Added: nixpkgs/trunk/pkgs/misc/themes/gtk2/oxygen-gtk/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/misc/themes/gtk2/oxygen-gtk/default.nix  Sun Jan 23 
21:04:12 2011        (r25676)
@@ -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";
+  };
+}

Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix       Sun Jan 23 20:42:28 
2011        (r25675)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix       Sun Jan 23 21:04:12 
2011        (r25676)
@@ -7158,6 +7158,10 @@
         pkgs_for_46.newScope pkgs_for_46.kde46;
   };
 
+  oxygen_gtk = callPackage ../misc/themes/gtk2/oxygen-gtk { 
+        inherit (gtkLibs) glib gtk;
+       };
+
   xfce = xfce4;
 
   xfce4 = recurseIntoAttrs
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to