Get rid of fetchurlGnome

closes #1707
This commit is contained in:
Ryan Mulligan
2015-04-04 22:22:12 -07:00
parent abf330a79a
commit 93f1029b0f
17 changed files with 84 additions and 107 deletions

View File

@@ -1,18 +1,15 @@
{ stdenv, fetchurlGnome, glib, pkgconfig, gobjectIntrospection, dbus }:
{ stdenv, fetchurl, glib, pkgconfig, gobjectIntrospection, dbus }:
stdenv.mkDerivation rec {
name = src.pkgname;
name = "json-glib-${minVer}.2";
minVer = "1.0";
src = fetchurlGnome {
project = "json-glib";
major = "1";
minor = "0";
patchlevel = "2";
extension = "xz";
src = fetchurl {
url = "mirror://gnome/sources/json-glib/${minVer}/${name}.tar.xz";
sha256 = "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a";
};
configureflags= "--with-introspection" ;
configureflags= "--with-introspection";
propagatedBuildInputs = [ glib gobjectIntrospection ];
nativeBuildInputs = [ pkgconfig ];