noise-repellent: 0.1.5 -> 0.2.1
This commit is contained in:
parent
4dffa42ec5
commit
527f83f0e0
@ -1,22 +1,24 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, fftwFloat, lv2 }:
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, cmake, libspecbleach, lv2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "noise-repellent";
|
pname = "noise-repellent";
|
||||||
version = "0.1.5";
|
version = "0.2.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lucianodato";
|
owner = "lucianodato";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "0hb89x9i2knzan46q4nwscf5zmnb2nwf4w13xl2c0y1mx1ls1mwl";
|
sha256 = "sha256-hMNVzhJZFGFeu5aygLkfq495O0zpaIk41ddzejvDITE=";
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
mesonFlags = ("--prefix=${placeholder "out"}/lib/lv2");
|
mesonFlags = [
|
||||||
|
"--prefix=${placeholder "out"}/lib/lv2"
|
||||||
|
"--buildtype=release"
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
nativeBuildInputs = [ meson ninja pkg-config cmake ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
fftwFloat lv2
|
libspecbleach lv2
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
@ -24,6 +26,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://github.com/lucianodato/noise-repellent";
|
homepage = "https://github.com/lucianodato/noise-repellent";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = [ maintainers.magnetophon ];
|
maintainers = [ maintainers.magnetophon ];
|
||||||
platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "i686-darwin" ];
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user