Remove some unused files

svn path=/nixpkgs/branches/glib-2.30-take2/; revision=33468
This commit is contained in:
Yury G. Kudryashov
2012-03-29 10:34:47 +00:00
parent 3decf956d4
commit a0474636d4
3 changed files with 0 additions and 107 deletions
@@ -1,25 +0,0 @@
{ stdenv, fetchurl_gnome, pkgconfig, glib, libsigcxx }:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "glibmm";
major = "2"; minor = "28"; patchlevel = "2"; extension = "xz";
sha256 = "1qyb8jb9avfzcdyhldxx7qljjhf30czwnh7c2r9p0x4nin2rjkpq";
};
buildNativeInputs = [pkgconfig];
propagatedBuildInputs = [glib libsigcxx];
meta = {
description = "C++ interface to the GLib library";
homepage = http://gtkmm.org/;
license = "LGPLv2+";
maintainers = with stdenv.lib.maintainers; [urkud raskin];
platforms = stdenv.lib.platforms.linux;
};
}