about summary refs log tree commit diff
path: root/pkgs/applications/audio/tonelib-gfx
diff options
context:
space:
mode:
authorDanil <86075850+dan4ik605743@users.noreply.github.com>2021-06-23 20:23:31 +0700
committerGitHub <noreply@github.com>2021-06-23 15:23:31 +0200
commit48f16f281fbdb97d618cbd15e016cf35963e5f03 (patch)
tree70f9495b47c5c5ceff1d56228a8e239a3800e564 /pkgs/applications/audio/tonelib-gfx
parent7730491a5fa5ca0e83d47e35a9cb63702c47eafa (diff)
add tonelib-gfx (#127712)
Diffstat (limited to 'pkgs/applications/audio/tonelib-gfx')
-rw-r--r--pkgs/applications/audio/tonelib-gfx/default.nix60
1 files changed, 60 insertions, 0 deletions
diff --git a/pkgs/applications/audio/tonelib-gfx/default.nix b/pkgs/applications/audio/tonelib-gfx/default.nix
new file mode 100644
index 0000000000000..137014508a3c9
--- /dev/null
+++ b/pkgs/applications/audio/tonelib-gfx/default.nix
@@ -0,0 +1,60 @@
+{ stdenv
+, dpkg
+, lib
+, autoPatchelfHook
+, fetchurl
+, gtk3
+, glib
+, desktop-file-utils
+, alsa-lib
+, libjack2
+, harfbuzz
+, fribidi
+, pango
+, freetype
+}:
+
+stdenv.mkDerivation rec {
+  pname = "tonelib-gfx";
+  version = "4.6.6";
+
+  src = fetchurl {
+    url = "https://www.tonelib.net/download/0509/ToneLib-GFX-amd64.deb";
+    sha256 = "sha256-wdX3SQSr0IZHsTUl+1Y0iETme3gTyryexhZ/9XHkGeo=";
+  };
+
+  buildInputs = [
+    dpkg
+    gtk3
+    glib
+    desktop-file-utils
+    alsa-lib
+    libjack2
+    harfbuzz
+    fribidi
+    pango
+    freetype
+  ];
+
+  nativeBuildInputs = [
+    autoPatchelfHook
+  ];
+
+  unpackPhase = ''
+    mkdir -p $TMP/ $out/
+    dpkg -x $src $TMP
+  '';
+
+  installPhase = ''
+    cp -R $TMP/usr/* $out/
+    mv $out/bin/ToneLib-GFX $out/bin/tonelib-gfx
+  '';
+
+  meta = with lib; {
+    description = "Tonelib GFX is an amp and effects modeling software for electric guitar and bass.";
+    homepage = "https://tonelib.net/";
+    license = licenses.unfree;
+    maintainers = with maintainers; [ dan4ik605743 ];
+    platforms = platforms.linux;
+  };
+}