blob: 0258557bd2dcbbf37aacfe04710a3dd3ad0a2f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
self: super: {
haskell = super.haskell // {
packageOverrides = self.lib.composeExtensions super.haskell.packageOverrides ( let
inherit (self) pkgs;
in
self: super: {
astatusbar = (self.callCabal2nix "astatusbar" ./.. { }).overrideAttrs (oldAttrs: {
nativeBuildInputs = oldAttrs.nativeBuildInputs or [ ] ++ [ pkgs.installShellFiles ];
postInstall = oldAttrs.postInstall or "" + ''
exe=${oldAttrs.pname}
installShellCompletion --cmd $exe \
--bash <($out/bin/$exe --bash-completion-script $out/bin/$exe) \
--fish <($out/bin/$exe --fish-completion-script $out/bin/$exe) \
--zsh <($out/bin/$exe --zsh-completion-script $out/bin/$exe)
'';
});
statvfs = pkgs.haskell.lib.markUnbroken (super.statvfs.overrideAttrs (oldAtts: {
patches = [
(pkgs.writers.writeText "statvfs.patch" ''
diff --git a/Setup.hs b/Setup.hs
index 7cf9bfd..54f57d6 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -3,4 +3,4 @@ module Main (main) where
import Distribution.Simple
main :: IO ()
-main = defaultMainWithHooks defaultUserHooks
+main = defaultMainWithHooks autoconfUserHooks
'')
];
}));
# XXX we don't need to depend on patched X11 anymore
X11 = (self.callCabal2nix "X11"
(pkgs.fetchFromGitHub {
owner = "aforemny";
repo = "X11";
rev = "70d7a6fba00d4ffe65db90cd3a2e0883ca690a88";
hash = "sha256-PsRtqaTyo+z8uPpsr7G3a0WF3Wh1NTWumu0rFlkLJMM=";
})
{ }).overrideAttrs (oldAttrs: {
preConfigure = oldAttrs.preConfigure or "" + ''
${pkgs.autoconf}/bin/autoreconf
'';
});
});
};
}
|