tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
wavegain: Use fetchFromGitHub instead of fetchgit.
Robbin C
10 years ago
b62f02f7
757942dd
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
wavegain
default.nix
+6
-4
pkgs/applications/audio/wavegain/default.nix
···
1
-
{ stdenv, fetchgit }:
2
3
stdenv.mkDerivation {
4
name = "wavegain-1.3.1";
5
-
src = fetchgit {
6
-
url = "https://github.com/MestreLion/wavegain.git";
7
-
sha256 = "1h886xijc9d7h4p6qx12c6kgwmp6s1bdycnyylkayfncczzlbi24";
0
0
8
};
9
10
installPhase = ''
···
1
+
{ stdenv, fetchFromGitHub }:
2
3
stdenv.mkDerivation {
4
name = "wavegain-1.3.1";
5
+
src = fetchFromGitHub {
6
+
owner = "MestreLion";
7
+
repo = "wavegain";
8
+
rev = "c928eaf97aeec5732625491b64c882e08e314fee";
9
+
sha256 = "0wghqnsbypmr4xcrhb568bfjdnxzzp8qgnws3jslzmzf34dpk5ls";
10
};
11
12
installPhase = ''