@@ -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 ];
|
||||
|
||||
Reference in New Issue
Block a user