Skip to content

Commit 3022ccf

Browse files
authored
bankstown-lv2: init at 1.1.0 (#281307)
1 parent 192e7f9 commit 3022ccf

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+
}

0 commit comments

Comments
 (0)