sooperlooper: moderinize

This commit is contained in:
awwpotato 2025-04-16 08:25:23 -07:00
parent e727b2e847
commit 26886efec9
No known key found for this signature in database

View file

@ -20,14 +20,14 @@
fftw, fftw,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "sooperlooper"; pname = "sooperlooper";
version = "1.7.9"; version = "1.7.9";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "essej"; owner = "essej";
repo = "sooperlooper"; repo = "sooperlooper";
rev = "v${version}"; rev = "v${finalAttrs.version}";
sha256 = "sha256-bPu/VWTJLSIMoJSEQb+/nqtTpkPtCNVuXA17XsnFSP0="; sha256 = "sha256-bPu/VWTJLSIMoJSEQb+/nqtTpkPtCNVuXA17XsnFSP0=";
}; };
@ -63,7 +63,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with lib; { meta = {
description = "Live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more"; description = "Live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more";
longDescription = '' longDescription = ''
It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory. It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory.
@ -73,8 +73,9 @@ stdenv.mkDerivation rec {
and the engine can be run standalone on a computer without a monitor. and the engine can be run standalone on a computer without a monitor.
''; '';
homepage = "https://sonosaurus.com/sooperlooper/"; homepage = "https://sonosaurus.com/sooperlooper/";
license = licenses.gpl2; downloadPage = "https://github.com/essej/sooperlooper";
maintainers = with maintainers; [ magnetophon ]; license = lib.licenses.gpl2;
platforms = platforms.linux; maintainers = with lib.maintainers; [ magnetophon ];
platforms = lib.platforms.linux;
}; };
} })