1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

mopidy: fix broken fetchgit -> fetchurl

This commit is contained in:
Evgeny Egorochkin 2013-07-19 09:30:04 +03:00
parent 74491ea24b
commit c22eff7505

View file

@ -1,4 +1,4 @@
{ stdenv, fetchgit, pythonPackages, pygobject, gst_python
{ stdenv, fetchurl, pythonPackages, pygobject, gst_python
, gst_plugins_good, gst_plugins_base
}:
@ -7,7 +7,7 @@ pythonPackages.buildPythonPackage rec {
version = "0.14.2";
src = fetchgit {
src = fetchurl {
url = "https://github.com/mopidy/mopidy/archive/v${version}.tar.gz";
sha256 = "0fqx7lk9g61d744b951cwx0szqbyji58dhw2ravnq9785nkhi7i4";
};