tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sooperlooper: moderinize
awwpotato
9 months ago
26886efe
e727b2e8
+8
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
so
sooperlooper
package.nix
+8
-7
pkgs/by-name/so/sooperlooper/package.nix
···
20
fftw,
21
}:
22
23
-
stdenv.mkDerivation rec {
24
pname = "sooperlooper";
25
version = "1.7.9";
26
27
src = fetchFromGitHub {
28
owner = "essej";
29
repo = "sooperlooper";
30
-
rev = "v${version}";
31
sha256 = "sha256-bPu/VWTJLSIMoJSEQb+/nqtTpkPtCNVuXA17XsnFSP0=";
32
};
33
···
63
64
enableParallelBuilding = true;
65
66
-
meta = with lib; {
67
description = "Live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more";
68
longDescription = ''
69
It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory.
···
73
and the engine can be run standalone on a computer without a monitor.
74
'';
75
homepage = "https://sonosaurus.com/sooperlooper/";
76
-
license = licenses.gpl2;
77
-
maintainers = with maintainers; [ magnetophon ];
78
-
platforms = platforms.linux;
0
79
};
80
-
}
···
20
fftw,
21
}:
22
23
+
stdenv.mkDerivation (finalAttrs: {
24
pname = "sooperlooper";
25
version = "1.7.9";
26
27
src = fetchFromGitHub {
28
owner = "essej";
29
repo = "sooperlooper";
30
+
rev = "v${finalAttrs.version}";
31
sha256 = "sha256-bPu/VWTJLSIMoJSEQb+/nqtTpkPtCNVuXA17XsnFSP0=";
32
};
33
···
63
64
enableParallelBuilding = true;
65
66
+
meta = {
67
description = "Live looping sampler capable of immediate loop recording, overdubbing, multiplying, reversing and more";
68
longDescription = ''
69
It allows for multiple simultaneous multi-channel loops limited only by your computer's available memory.
···
73
and the engine can be run standalone on a computer without a monitor.
74
'';
75
homepage = "https://sonosaurus.com/sooperlooper/";
76
+
downloadPage = "https://github.com/essej/sooperlooper";
77
+
license = lib.licenses.gpl2;
78
+
maintainers = with lib.maintainers; [ magnetophon ];
79
+
platforms = lib.platforms.linux;
80
};
81
+
})