blob: a1642ecb20618884866a0a572fa2a533f35a6e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ yubikey-touch-detector, ... }:
yubikey-touch-detector.overrideAttrs (attrs: {
patches = [ ./yubikey-touch-detector.patch ];
postInstall =
(attrs.postInstall or "")
+ ''
rm $out/share/icons/hicolor/128x128/apps/yubikey-touch-detector.png
install -Dm444 -T ${./touch.svg} \
$out/share/icons/hicolor/scalable/apps/yubikey-touch-symbolic.svg
'';
})
|