blob: f72865526cd49a2d66176f2c8407abbab9bd87cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
self: super: {
sc-im = super.sc-im.overrideAttrs (old: {
buildPhase = ''
cd src
sed -i Makefile -e 's@\...name.info@.local/state/$(name)info@'
cd ..
'' + old.buildPhase;
});
}
|