flakes/packages/spotify-adblock/default.nix

18 lines
377 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;
2023-01-23 22:18:27 +07:00
cargoSha256 = "sha256-07vswkW0BZCEg8Z/cS71bbkJ546k+YI38HN5bdIqTPU=";
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
'';
}