summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2018-10-31 18:39:34 +0100
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-31 18:39:34 +0100
commit56b88fb03f3e3d7a0e34f27e8d6558bfd649d077 (patch)
tree81b85cd2a20ccc306b2ffce7b83fd2e3eef88649 /pkgs
parent98fd559eaa67803eba19f32be4dd4347b1cbc340 (diff)
downloadnixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar.gz
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar.bz2
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar.lz
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar.xz
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.tar.zst
nixlib-56b88fb03f3e3d7a0e34f27e8d6558bfd649d077.zip
gxplugins-lv2: init at 0.5 (#48847)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/gxplugins-lv2/default.nix29
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/applications/audio/gxplugins-lv2/default.nix b/pkgs/applications/audio/gxplugins-lv2/default.nix
new file mode 100644
index 000000000000..e7e4744eea2f
--- /dev/null
+++ b/pkgs/applications/audio/gxplugins-lv2/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchFromGitHub, xorg, xproto, cairo, lv2, pkgconfig }:
+
+stdenv.mkDerivation rec {
+  name = "${pname}-${version}";
+  pname = "GxPlugins.lv2";
+  version = "0.5";
+
+  src = fetchFromGitHub {
+    owner = "brummer10";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "16r5bj7w726d9327flg530fn0bli4crkxjss7i56yhb1bsi39mbv";
+    fetchSubmodules = true;
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [
+    xorg.libX11 xproto cairo lv2
+  ];
+
+  installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/brummer10/GxPlugins.lv2;
+    description = "A set of extra lv2 plugins from the guitarix project";
+    maintainers = [ maintainers.magnetophon ];
+    license = licenses.gpl3;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index b01682996991..9ceb1b7dc636 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -17158,6 +17158,8 @@ with pkgs;
 
   gxmessage = callPackage ../applications/misc/gxmessage { };
 
+  gxplugins-lv2 = callPackage ../applications/audio/gxplugins-lv2 { };
+
   hackrf = callPackage ../applications/misc/hackrf { };
 
   hakuneko = callPackage ../tools/misc/hakuneko { };