mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{ 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 = "Custom sample mashing app";
|
|
mainProgram = "samplebrain";
|
|
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;
|
|
};
|
|
}
|