summary refs log tree commit diff
path: root/pkgs/applications/audio/aether-lv2
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2021-11-07 22:27:27 +0100
committerBart Brouns <bart@magnetophon.nl>2021-11-07 22:39:08 +0100
commit5a4df47ec78fee539941d4f56cf2897c7d3c9189 (patch)
tree1837883d5e2866b2f9d71184d24bfa12064bbf57 /pkgs/applications/audio/aether-lv2
parent7fa8d14f504b679ef5f7605cbaa330536110cbd4 (diff)
downloadnixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar.gz
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar.bz2
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar.lz
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar.xz
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.tar.zst
nixpkgs-5a4df47ec78fee539941d4f56cf2897c7d3c9189.zip
aether-lv2: init at 1.2.1
Diffstat (limited to 'pkgs/applications/audio/aether-lv2')
-rw-r--r--pkgs/applications/audio/aether-lv2/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/applications/audio/aether-lv2/default.nix b/pkgs/applications/audio/aether-lv2/default.nix
new file mode 100644
index 00000000000..e912c7fa49a
--- /dev/null
+++ b/pkgs/applications/audio/aether-lv2/default.nix
@@ -0,0 +1,33 @@
+{ lib, stdenv, fetchFromGitHub, lv2, libX11, libGL, libGLU, mesa, cmake }:
+
+stdenv.mkDerivation rec {
+  pname = "aether-lv2";
+  version = "1.2.1";
+
+  src = fetchFromGitHub {
+    owner = "Dougal-s";
+    repo = "aether";
+    rev = "v${version}";
+    sha256 = "0xhih4smjxn87s0f4gaab51d8594qlp0lyypzxl5lm37j1i9zigs";
+    fetchSubmodules = true;
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  buildInputs = [
+    lv2 libX11 libGL libGLU mesa
+  ];
+
+  installPhase = ''
+    mkdir -p $out/lib/lv2
+    cp -r aether.lv2 $out/lib/lv2
+  '';
+
+  meta = with lib; {
+    homepage = "https://dougal-s.github.io/Aether/";
+    description = "An algorithmic reverb LV2 based on Cloudseed";
+    maintainers = [ maintainers.magnetophon ];
+    platforms = platforms.linux;
+    license = licenses.mit;
+  };
+}