8d28093ffb
GitOrigin-RevId: 31ffc50c571e6683e9ecc9dbcbd4a8e9914b4497
18 lines
517 B
Nix
Generated
18 lines
517 B
Nix
Generated
{ callPackage
|
|
, ...
|
|
}:
|
|
|
|
/*
|
|
Notes on specific dependencies:
|
|
- if/when python2.7 is removed from nixpkgs, this may need to figure
|
|
out how to build oil's vendored python2
|
|
- I'm not sure if glibcLocales is worth the addition here. It's to fix
|
|
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 {
|
|
# binlore = callPackage ./binlore.nix { };
|
|
oil = callPackage ./oildev.nix { };
|
|
}
|