summary refs log tree commit diff
path: root/pkgs/applications/audio/setbfree/default.nix
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2014-05-05 22:57:48 +0200
committerCillian de Róiste <goibhniu@fsfe.org>2014-05-05 22:57:48 +0200
commit7c2c5987d1d0a3b574b81e9659f5194a8835898c (patch)
tree1a7191a3b8e13de3927a4d23d07006159b432d6f /pkgs/applications/audio/setbfree/default.nix
parentd2587a014fc3e414d11c5bbc69b2579df3e6ff74 (diff)
downloadnixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar.gz
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar.bz2
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar.lz
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar.xz
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.tar.zst
nixpkgs-7c2c5987d1d0a3b574b81e9659f5194a8835898c.zip
Add setBfree a DSP tonewheel organ emulator
Diffstat (limited to 'pkgs/applications/audio/setbfree/default.nix')
-rw-r--r--pkgs/applications/audio/setbfree/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/audio/setbfree/default.nix b/pkgs/applications/audio/setbfree/default.nix
new file mode 100644
index 00000000000..580874d1270
--- /dev/null
+++ b/pkgs/applications/audio/setbfree/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, alsaLib, jackaudio, lv2, pkgconfig }:
+
+stdenv.mkDerivation  rec {
+  name = "setbfree-${version}";
+  version = "0.7.5";
+
+  src = fetchurl {
+    url = "https://github.com/pantherb/setBfree/archive/v${version}.tar.gz";
+    sha256 = "1chlmgwricc6l4kyg35vc9v8f1n8psr28iihn4a9q2prj1ihqcbc";
+  };
+
+  patchPhase = "sed 's#/usr/local#$(out)#g' -i common.mak";
+
+  buildInputs = [ alsaLib jackaudio lv2 pkgconfig ];
+
+  meta = with stdenv.lib; {
+    description = "A DSP tonewheel organ emulator";
+    homepage = http://setbfree.org;
+    license = licenses.gpl2;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}