mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
24 lines
641 B
Nix
24 lines
641 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, lv2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "airwindows-lv2";
|
|
version = "18.0";
|
|
src = fetchFromGitHub {
|
|
owner = "hannesbraun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-06mfTvt0BXHUGZG2rnEbuOPIP+jD76mQZTo+m4b4lo4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ lv2 ];
|
|
|
|
meta = with lib; {
|
|
description = "Airwindows plugins (ported to LV2)";
|
|
homepage = "https://github.com/hannesbraun/airwindows-lv2";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.magnetophon ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|