Adding version, fixing the mirror path and the license and adding myself as maintainer

svn path=/nixpkgs/trunk/; revision=26005
This commit is contained in:
Cillian de Roiste 2011-02-16 23:52:14 +00:00
parent dd5ad62588
commit da00930257

View File

@ -2,19 +2,20 @@
cmake, glib, gtk, pkgconfig }: cmake, glib, gtk, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "oxygen-gtk";
version = "1.0.1"; version = "1.0.1";
name = "oxygen-gtk-${version}";
src = fetchurl { src = fetchurl {
url = "mirror://kde/stable/${name}/${version}/src/${name}-${version}.tar.bz2"; url = "mirror://kde/stable/oxygen-gtk/${version}/src/${name}.tar.bz2";
sha256 = "0ki8qllr5ai48bl2pz8rxzf5cax08ckhgrn0nlf815ba83jfar32"; sha256 = "0ki8qllr5ai48bl2pz8rxzf5cax08ckhgrn0nlf815ba83jfar32";
}; };
buildInputs = [ cmake glib gtk pkgconfig ]; buildInputs = [ cmake glib gtk pkgconfig ];
meta = { meta = with stdenv.lib; {
description = "Port of the default KDE widget theme (Oxygen), to gtk"; description = "Port of the default KDE widget theme (Oxygen), to gtk";
homepage = https://projects.kde.org/projects/playground/artwork/oxygen-gtk; homepage = https://projects.kde.org/projects/playground/artwork/oxygen-gtk;
licence = "LGPLv2"; license = licenses.lgpl2;
maintainers = [ maintainers.goibhniu ];
}; };
} }