Merge pull request #192883 from mitchmindtree/samplebrains-0.18

This commit is contained in:
Sandro
2023-07-03 16:05:57 +02:00
committed by GitHub
2 changed files with 64 additions and 0 deletions
@@ -0,0 +1,62 @@
{ lib
, stdenv
, fetchFromGitLab
, fftw
, liblo
, libsndfile
, makeDesktopItem
, portaudio
, qmake
, qtbase
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "samplebrain";
version = "0.18.5";
src = fetchFromGitLab {
owner = "then-try-this";
repo = "samplebrain";
rev = "v${version}_release";
hash = "sha256-/pMHmwly5Dar7w/ZawvR3cWQHw385GQv/Wsl1E2w5p4=";
};
nativeBuildInputs = [
qmake
wrapQtAppsHook
];
buildInputs = [
fftw
liblo
libsndfile
portaudio
qtbase
];
desktopItem = makeDesktopItem {
type = "Application";
desktopName = pname;
name = pname;
comment = "A sample masher designed by Aphex Twin";
exec = pname;
icon = pname;
categories = [ "Audio" ];
};
installPhase = ''
mkdir -p $out/bin
cp samplebrain $out/bin
install -m 444 -D desktop/samplebrain.svg $out/share/icons/hicolor/scalable/apps/samplebrain.svg
'';
meta = with lib; {
description = "A custom sample mashing app";
homepage = "https://thentrythis.org/projects/samplebrain";
changelog = "https://gitlab.com/then-try-this/samplebrain/-/releases/v${version}_release";
maintainers = with maintainers; [ mitchmindtree ];
license = licenses.gpl2;
platforms = platforms.linux;
};
}
+2
View File
@@ -17688,6 +17688,8 @@ with pkgs;
mruby = callPackage ../development/compilers/mruby { };
samplebrain = libsForQt5.callPackage ../applications/audio/samplebrain { };
scsh = callPackage ../development/interpreters/scsh { };
scheme48 = callPackage ../development/interpreters/scheme48 { };