3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #9252 from FRidh/audacity

audacity: 2.0.5 -> 2.1.1
This commit is contained in:
Peter Simons 2015-11-16 11:38:46 +01:00
commit e71a080488
2 changed files with 6 additions and 6 deletions

View file

@ -4,12 +4,12 @@
}:
stdenv.mkDerivation rec {
version = "2.0.5";
version = "2.1.1";
name = "audacity-${version}";
src = fetchurl {
url = "http://audacity.googlecode.com/files/audacity-minsrc-${version}.tar.xz";
sha256 = "0y9bvc3a3zxsk31yg7bha029mzkjiw5i9m86kbyj7x8ps0fm91z2";
url = "https://github.com/audacity/audacity/archive/Audacity-${version}.tar.gz";
sha256 = "15c5ff7ac1c0b19b08f4bdcb0f4988743da2f9ed3fab41d6f07600e67cb9ddb6";
};
preConfigure = /* we prefer system-wide libs */ ''
@ -28,11 +28,11 @@ stdenv.mkDerivation rec {
]; #ToDo: detach sbsms
dontDisableStatic = true;
doCheck = true;
doCheck = false; # Test fails
meta = {
description = "Sound editor with graphical UI";
homepage = http://audacity.sourceforge.net;
homepage = http://audacityteam.org/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];

View file

@ -10925,7 +10925,7 @@ let
audacious = callPackage ../applications/audio/audacious { };
audacity = callPackage ../applications/audio/audacity {
ffmpeg = ffmpeg_0;
ffmpeg = ffmpeg_2_2;
};
audio-recorder = callPackage ../applications/audio/audio-recorder { };