GNOME 3.16.1, closes #7357

This commit is contained in:
Luca Bruno
2015-04-25 12:02:33 +02:00
parent 38d6aec3f6
commit db3b86560f
146 changed files with 4428 additions and 68 deletions
@@ -0,0 +1,18 @@
{ stdenv, fetchurl, intltool, gobjectIntrospection, pkgconfig }:
stdenv.mkDerivation rec {
name = "gcab-0.6";
src = fetchurl {
url = "mirror://gnome/sources/gcab/0.6/${name}.tar.xz";
sha256 = "a0443b904bfa7227b5155bfcdf9ea9256b6e26930b8febe1c41f972f6f1334bb";
};
buildInputs = [ intltool gobjectIntrospection pkgconfig ];
meta = with stdenv.lib; {
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
};
}