2021-09-16 02:58:49 +02:00
|
|
|
{ callPackage
|
|
|
|
, ...
|
2021-01-05 17:56:59 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
/*
|
2021-09-16 02:58:49 +02:00
|
|
|
Notes on specific dependencies:
|
|
|
|
- if/when python2.7 is removed from nixpkgs, this may need to figure
|
2021-01-05 17:56:59 +01:00
|
|
|
out how to build oil's vendored python2
|
2021-09-16 02:58:49 +02:00
|
|
|
- I'm not sure if glibcLocales is worth the addition here. It's to fix
|
2021-01-05 17:56:59 +01:00
|
|
|
a libc test oil runs. My oil fork just disabled the libc tests, but
|
|
|
|
I haven't quite decided if that's the right long-term call, so I
|
|
|
|
didn't add a patch for it here yet.
|
|
|
|
*/
|
|
|
|
|
|
|
|
rec {
|
2021-09-16 02:58:49 +02:00
|
|
|
# binlore = callPackage ./binlore.nix { };
|
|
|
|
oil = callPackage ./oildev.nix { };
|
2021-01-05 17:56:59 +01:00
|
|
|
}
|