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
@@ -1,11 +1,11 @@
{ stdenv, fetchurlGnome, pkgconfig, glib, libIDL, libintlOrEmpty }:
{ stdenv, fetchurl, pkgconfig, glib, libIDL, libintlOrEmpty }:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurlGnome {
project = "ORBit2";
major = "2"; minor = "14"; patchlevel = "19";
name = "ORBit2-${minVer}.19";
minVer = "2.14";
src = fetchurl {
url = "mirror://gnome/sources/ORBit2/${minVer}/${name}.tar.bz2";
sha256 = "0l3mhpyym9m5iz09fz0rgiqxl2ym6kpkwpsp1xrr4aa80nlh1jam";
};