nixpkgs/pkgs/applications/audio/airwindows-lv2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
634 B
Nix
Raw Normal View History

2023-08-03 15:44:22 +00:00
{ lib, stdenv, fetchFromSourcehut, meson, ninja, pkg-config, lv2 }:
2022-04-27 17:04:09 +00:00
stdenv.mkDerivation rec {
pname = "airwindows-lv2";
2023-12-13 01:12:47 +00:00
version = "26.2";
2023-08-03 15:44:22 +00:00
src = fetchFromSourcehut {
owner = "~hannes";
2022-04-27 17:04:09 +00:00
repo = pname;
rev = "v${version}";
2023-12-13 01:12:47 +00:00
sha256 = "sha256-GpfglGC7zD275lm9OsBmqDC90E/vVUqslm7HjPgm74M=";
2022-04-27 17:04:09 +00:00
};
2022-10-15 14:10:32 +00:00
nativeBuildInputs = [ meson ninja pkg-config ];
2022-04-27 17:04:09 +00:00
buildInputs = [ lv2 ];
meta = with lib; {
description = "Airwindows plugins (ported to LV2)";
2023-08-03 15:44:22 +00:00
homepage = "https://sr.ht/~hannes/airwindows-lv2";
2022-04-27 17:04:09 +00:00
license = licenses.mit;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;
};
}