File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
pkgs/by-name/ba/bankstown-lv2 Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ { lib
2+ , rustPlatform
3+ , fetchFromGitHub
4+ } :
5+
6+ rustPlatform . buildRustPackage rec {
7+ pname = "bankstown-lv2" ;
8+ version = "1.1.0" ;
9+
10+ src = fetchFromGitHub {
11+ owner = "chadmed" ;
12+ repo = "bankstown" ;
13+ rev = version ;
14+ hash = "sha256-IThXEY+mvT2MCw0PSWU/182xbUafd6dtm6hNjieLlKg=" ;
15+ } ;
16+
17+ cargoSha256 = "sha256-yRzM4tcYc6mweTpLnnlCeKgP00L2wRgHamtUzK9Kstc=" ;
18+
19+ installPhase = ''
20+ export LIBDIR=$out/lib
21+ mkdir -p $LIBDIR
22+
23+ make
24+ make install
25+ '' ;
26+
27+ meta = with lib ; {
28+ homepage = "https://github.com/chadmed/bankstown" ;
29+ description = "Halfway-decent three-stage psychoacoustic bass approximation" ;
30+ license = licenses . mit ;
31+ maintainers = with maintainers ; [ yuka ] ;
32+ platforms = platforms . linux ;
33+ } ;
34+ }
You can’t perform that action at this time.
0 commit comments