* Forgot to commit.
svn path=/nixpkgs/trunk/; revision=28778
This commit is contained in:
parent
b801018864
commit
8c37d99fd9
18
pkgs/desktops/xfce-4.8/core/garcon.nix
Normal file
18
pkgs/desktops/xfce-4.8/core/garcon.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, glib }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "garcon-0.1.8";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://archive.xfce.org/src/xfce/garcon/0.1/${name}.tar.bz2";
|
||||||
|
sha1 = "e5eac6a13208c81ccad0941656c01e7a69530f03";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig intltool glib ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.xfce.org/;
|
||||||
|
description = "Xfce panel";
|
||||||
|
license = "GPLv2+";
|
||||||
|
};
|
||||||
|
}
|
24
pkgs/desktops/xfce-4.8/core/libxfce4ui.nix
Normal file
24
pkgs/desktops/xfce-4.8/core/libxfce4ui.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
||||||
|
, libstartup_notification }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libxfce4ui-4.8.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://archive.xfce.org/src/xfce/libxfce4ui/4.8/${name}.tar.bz2";
|
||||||
|
sha1 = "107f9d8e3e583f3cf5330074e89ea72eb2a82888";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ pkgconfig intltool gtk libxfce4util xfconf
|
||||||
|
libstartup_notification
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.xfce.org/;
|
||||||
|
description = "Basic GUI library for Xfce";
|
||||||
|
license = "LGPLv2+";
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user