mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
sooperlooper: moderinize
This commit is contained in:
parent
e727b2e847
commit
26886efec9
1 changed files with 8 additions and 7 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue