about summary refs log tree commit diff
path: root/pkgs/applications/audio/aacgain/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/aacgain/default.nix')
-rw-r--r--pkgs/applications/audio/aacgain/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/audio/aacgain/default.nix b/pkgs/applications/audio/aacgain/default.nix
index 4cfc51970aad..3f1c67a2a618 100644
--- a/pkgs/applications/audio/aacgain/default.nix
+++ b/pkgs/applications/audio/aacgain/default.nix
@@ -1,10 +1,11 @@
-{ stdenv, fetchgit, unzip, m4, libtool, automake, autoconf, mp3gain, mp4v2, faad2 }:
+{ stdenv, fetchFromGitHub, unzip, m4, libtool, automake, autoconf, mp3gain, mp4v2, faad2 }:
 
 stdenv.mkDerivation {
   name = "aacgain-1.9";
   srcs = [
-    (fetchgit {
-      url = "https://github.com/mecke/aacgain.git";
+    (fetchFromGitHub {
+      owner = "mecke";
+      repo = "aacgain";
       rev = "4a7d59d78eadbbd5413e905af8f91fe9184ce7a8";
       sha256 = "0y25avgmm1xpbggvkhby1a7v9wmhsp3wmp74q06sf8ph8xsfajw4";
     })