forked from mirrors/nixpkgs
wavegain: Use fetchFromGitHub instead of fetchgit.
This commit is contained in:
parent
757942ddbf
commit
b62f02f751
|
@ -1,10 +1,12 @@
|
||||||
{ stdenv, fetchgit }:
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "wavegain-1.3.1";
|
name = "wavegain-1.3.1";
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/MestreLion/wavegain.git";
|
owner = "MestreLion";
|
||||||
sha256 = "1h886xijc9d7h4p6qx12c6kgwmp6s1bdycnyylkayfncczzlbi24";
|
repo = "wavegain";
|
||||||
|
rev = "c928eaf97aeec5732625491b64c882e08e314fee";
|
||||||
|
sha256 = "0wghqnsbypmr4xcrhb568bfjdnxzzp8qgnws3jslzmzf34dpk5ls";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue