uqm: Switch to using fetchurl for uqm3donix.

As we now have a tagged first release, it really doesn't make sense to
introduce additional dependencies by using fetchgit.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig
2013-08-15 10:43:38 +02:00
parent 857cfb4c03
commit 7e2587561d
2 changed files with 7 additions and 8 deletions
+3 -3
View File
@@ -2,15 +2,15 @@
, pkgconfig, mesa
, SDL, SDL_image, libpng, zlib, libvorbis, libogg, libmikmod, unzip
, use3DOVideos ? false, requireFile ? null, writeText ? null
, fetchgit ? null, haskellPackages ? null
, haskellPackages ? null
}:
assert use3DOVideos -> requireFile != null && writeText != null
&& fetchgit != null && haskellPackages != null;
&& haskellPackages != null;
let
videos = import ./3dovideo.nix {
inherit stdenv requireFile writeText fetchgit haskellPackages;
inherit stdenv requireFile writeText fetchurl haskellPackages;
};
in stdenv.mkDerivation rec {
name = "uqm-${version}";