treewide: explicitly specify gtk and related package versions

This commit is contained in:
Kirill Boltaev
2016-09-12 18:26:06 +03:00
parent 30107249b1
commit bccd75094f
339 changed files with 893 additions and 872 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gtk, libsndfile, pkgconfig, python }:
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "lv2-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1saq0vwqy5zjdkgc5ahs8kcabxfmff2mmg68fiqrkv8hiw9m6jks";
};
buildInputs = [ gtk libsndfile pkgconfig python ];
buildInputs = [ gtk2 libsndfile pkgconfig python ];
configurePhase = "python waf configure --prefix=$out";
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, boost, gtkmm, lv2, pkgconfig, python }:
{ stdenv, fetchurl, boost, gtkmm2, lv2, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "lvtk-${version}";
@@ -10,7 +10,9 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig python ];
buildInputs = [ boost gtkmm lv2 ];
buildInputs = [ boost gtkmm2 lv2 ];
enableParallelBuilding = true;
# Fix including the boost libraries during linking
postPatch = ''
@@ -1,4 +1,4 @@
{ stdenv, fetchsvn, boost, gtk, pkgconfig, python }:
{ stdenv, fetchsvn, boost, gtk2, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "raul-svn-${rev}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0yvm3j57lch89dixx7zsip7pxsws0xxy1y6ck7a3l0534qc5kny4";
};
buildInputs = [ boost gtk pkgconfig python ];
buildInputs = [ boost gtk2 pkgconfig python ];
configurePhase = "python waf configure --prefix=$out";
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, gtk, lv2, pkgconfig, python, serd, sord, sratom, qt4 }:
{ stdenv, fetchurl, gtk2, lv2, pkgconfig, python, serd, sord, sratom, qt4 }:
stdenv.mkDerivation rec {
name = "suil-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "1s3adyiw7sa5gfvm5wasa61qa23629kprxyv6w8hbxdiwp0hhxkq";
};
buildInputs = [ gtk lv2 pkgconfig python qt4 serd sord sratom ];
buildInputs = [ gtk2 lv2 pkgconfig python qt4 serd sord sratom ];
configurePhase = "python waf configure --prefix=$out";