about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/soundtouch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/soundtouch')
-rw-r--r--nixpkgs/pkgs/development/libraries/soundtouch/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/soundtouch/default.nix b/nixpkgs/pkgs/development/libraries/soundtouch/default.nix
new file mode 100644
index 000000000000..71c7915c2ede
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/soundtouch/default.nix
@@ -0,0 +1,24 @@
+{stdenv, lib, fetchFromGitLab, autoconf, automake, libtool}:
+
+stdenv.mkDerivation rec {
+  pname = "soundtouch";
+  version = "2.1.2";
+
+  src = fetchFromGitLab {
+    owner = pname;
+    repo = pname;
+    rev = version;
+    sha256 = "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz";
+  };
+
+  nativeBuildInputs = [ autoconf automake libtool ];
+
+  preConfigure = "./bootstrap";
+
+  meta = with lib; {
+    description = "A program and library for changing the tempo, pitch and playback rate of audio";
+    homepage = "http://www.surina.net/soundtouch/";
+    license = licenses.lgpl21;
+    platforms = platforms.all;
+  };
+}