summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-06-28 01:07:40 +0200
committerGitHub <noreply@github.com>2020-06-28 01:07:40 +0200
commit569d2965febf8baedff83a1699044fa179e07482 (patch)
tree7f998aabc3e0c284d302769079227751874191e3
parentd7e227073d3bb502800295e24d4b144820d897fb (diff)
parent4b365ae08c211dc798d776e7dec04e9e1cc0d173 (diff)
downloadnixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar.gz
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar.bz2
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar.lz
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar.xz
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.tar.zst
nixpkgs-569d2965febf8baedff83a1699044fa179e07482.zip
Merge pull request #91471 from magnetophon/industrializer
industrializer: init at 0.2.6
-rw-r--r--pkgs/applications/audio/industrializer/default.nix50
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/applications/audio/industrializer/default.nix b/pkgs/applications/audio/industrializer/default.nix
new file mode 100644
index 00000000000..593458506d8
--- /dev/null
+++ b/pkgs/applications/audio/industrializer/default.nix
@@ -0,0 +1,50 @@
+{ stdenv
+, fetchurl
+, alsaLib
+, audiofile
+, autoconf
+, automake
+, gnome2
+, gtk2
+, libjack2
+, libtool
+, libxml2
+, pkg-config
+}:
+
+stdenv.mkDerivation rec {
+  pname = "industrializer";
+  version = "0.2.6";
+  src = fetchurl {
+    url = "mirror://sourceforge/project/${pname}/ps${pname}-${version}.tar.bz2";
+    sha256 = "0vls94hqpkk8h17da6fddgqbl5dgm6250av3raimhhzwvm5r1gfi";
+  };
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [
+    alsaLib
+    audiofile
+    autoconf
+    automake
+    gnome2.gtkglext
+    gtk2
+    libjack2
+    libtool
+    libxml2
+  ];
+
+  preConfigure = "./autogen.sh";
+
+  meta = {
+    description = "This program generates synthesized percussion sounds using physical modelling";
+    longDescription = ''
+      The range of sounds possible include but is not limited to cymbal sounds, metallic noises, bubbly sounds, and chimes.
+      After a sound is rendered, it can be played and then saved to a .WAV file.
+    '';
+    homepage = "https://sourceforge.net/projects/industrializer/";
+    license = stdenv.lib.licenses.gpl2Plus;
+    maintainers = [ stdenv.lib.maintainers.magnetophon ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index be456aba81f..e1150681e65 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -4325,6 +4325,8 @@ in
 
   incron = callPackage ../tools/system/incron { };
 
+  industrializer = callPackage ../applications/audio/industrializer { };
+
   inetutils = callPackage ../tools/networking/inetutils { };
 
   inform7 = callPackage ../development/compilers/inform7 { };