Merge pull request #84186 from matthiasbeyer/update-pulseeffects

pulseeffects: 4.7.1 -> 4.7.2
This commit is contained in:
Maximilian Bosch 2020-04-03 16:31:33 +02:00 committed by GitHub
commit 470b916556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 23 additions and 4 deletions

View File

@ -46,13 +46,13 @@ let
]; ];
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "pulseeffects"; pname = "pulseeffects";
version = "4.7.1"; version = "4.7.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wwmm"; owner = "wwmm";
repo = "pulseeffects"; repo = "pulseeffects";
rev = "v${version}"; rev = "v${version}";
sha256 = "1r1hk5zp2cgrwyqkvp8kg2dkbihdyx3ydzhmirkwya8jag9pwadd"; sha256 = "1yga25da5bpg12zkikp6dn4wqhn9f7r10awvjzfcz8s6w9xlz6rx";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -0,0 +1,16 @@
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.72.0";
src = fetchurl {
#url = "mirror://sourceforge/boost/boost_1_72_0.tar.bz2";
urls = [
"mirror://sourceforge/boost/boost_1_72_0.tar.bz2"
"https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2"
];
# SHA256 from http://www.boost.org/users/history/version_1_72_0.html
sha256 = "59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722";
};
})

View File

@ -11176,7 +11176,8 @@ in
boost16x = boost169; boost16x = boost169;
boost170 = callPackage ../development/libraries/boost/1.70.nix { }; boost170 = callPackage ../development/libraries/boost/1.70.nix { };
boost171 = callPackage ../development/libraries/boost/1.71.nix { }; boost171 = callPackage ../development/libraries/boost/1.71.nix { };
boost17x = boost171; boost172 = callPackage ../development/libraries/boost/1.72.nix { };
boost17x = boost172;
boost = boost16x; boost = boost16x;
boost_process = callPackage ../development/libraries/boost-process { }; boost_process = callPackage ../development/libraries/boost-process { };
@ -15748,7 +15749,9 @@ in
libpulseaudio = libpulseaudio-vanilla; libpulseaudio = libpulseaudio-vanilla;
pulseeffects = callPackage ../applications/audio/pulseeffects { }; pulseeffects = callPackage ../applications/audio/pulseeffects {
boost = boost172;
};
tomcat_connectors = callPackage ../servers/http/apache-modules/tomcat-connectors { }; tomcat_connectors = callPackage ../servers/http/apache-modules/tomcat-connectors { };