1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 00:10:30 +00:00

aacgain: Use fetchFromGitHub instead of fetchgit.

This commit is contained in:
Robbin C 2015-06-10 17:43:34 +08:00 committed by Rok Garbas
parent dbac15d66c
commit 681cbedd4a

View file

@ -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";
})