flakes/packages/spotify-adblock/default.nix

18 lines
375 B
Nix
Raw Normal View History

2021-09-19 11:31:11 +07:00
{ inputs
, lib
, rustPlatform
}:
rustPlatform.buildRustPackage {
pname = "spotify-adblock";
version = "1.0";
src = inputs.spotify-adblock;
cargoHash = "sha256-oGpe+kBf6kBboyx/YfbQBt1vvjtXd1n2pOH6FNcbF8M=";
2021-09-19 11:31:11 +07:00
patches = [ ./0002-allow-setting-config-from-environment-variable.patch ];
postInstall = ''
cp ${inputs.spotify-adblock}/config.toml $out/lib
'';
}