about summary refs log tree commit diff
path: root/pkgs/applications/audio/bristol
diff options
context:
space:
mode:
authorCillian de Róiste <goibhniu@fsfe.org>2012-11-22 00:08:28 +0100
committerCillian de Róiste <goibhniu@fsfe.org>2012-11-22 00:08:28 +0100
commitc238c192205a29a759a2415412bf0d22c7054000 (patch)
tree3ef14f07727cce89dd1895e366440530c1ce18d0 /pkgs/applications/audio/bristol
parentad928fee30a1e8806fcb38579b65e9dc00196b81 (diff)
downloadnixlib-c238c192205a29a759a2415412bf0d22c7054000.tar
nixlib-c238c192205a29a759a2415412bf0d22c7054000.tar.gz
nixlib-c238c192205a29a759a2415412bf0d22c7054000.tar.bz2
nixlib-c238c192205a29a759a2415412bf0d22c7054000.tar.lz
nixlib-c238c192205a29a759a2415412bf0d22c7054000.tar.xz
nixlib-c238c192205a29a759a2415412bf0d22c7054000.tar.zst
nixlib-c238c192205a29a759a2415412bf0d22c7054000.zip
Add Bristol: a range of synthesiser, electric piano and organ emulations
Diffstat (limited to 'pkgs/applications/audio/bristol')
-rw-r--r--pkgs/applications/audio/bristol/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/audio/bristol/default.nix b/pkgs/applications/audio/bristol/default.nix
new file mode 100644
index 000000000000..81d44fdcb74a
--- /dev/null
+++ b/pkgs/applications/audio/bristol/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, alsaLib, jackaudio, pkgconfig, pulseaudio, xlibs }:
+
+stdenv.mkDerivation  rec {
+  name = "bristol-${version}";
+  version = "0.60.10";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/bristol/${name}.tar.gz";
+    sha256 = "070rn5zdx6vrqmq7w1rrpxig3bxlylbsw82nlmkjnhjrgm6yx753";
+  };
+
+  buildInputs = [
+    alsaLib jackaudio pkgconfig pulseaudio xlibs.libX11 xlibs.libXext
+    xlibs.xproto
+  ];
+
+  meta = with stdenv.lib; {
+    description = "A range of synthesiser, electric piano and organ emulations";
+    homepage = http://bristol.sourceforge.net;
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.goibhniu ];
+  };
+}
\ No newline at end of file