blob: a2976850fa713518ef25f194b55dfebd61bb9b23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
self: super: {
nixops = super.nixops.overrideAttrs (old: {
patches = [
./fix_glibc.patch
(self.fetchpatch {
name = "hetzner_cloud.patch";
url = "https://github.com/goodraven/nixops/commit/272e50d0b0262e49cdcaad42cdab57aad183d1c2.patch";
sha256 = "12wcrb0155ald52m7fbr2m5rrxdnwdwripq91ckscgsk42mdc517";
})
];
preConfigure = (old.preConfigure or "") + ''
# https://github.com/NixOS/nixops/issues/1216
sed -i -e "/Register the paths in the Nix database./s/#.*$/export USER=root/" nix/libvirtd-image.nix
sed -i -e '/^import sys$/s/$/; sys.tracebacklimit = 0/' scripts/nixops
sed -i -e "/'keyFile'/s/'path'/'string'/" nixops/backends/__init__.py
'';
});
}
|