mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
465b512777
This release gets resholve caught up to the latest release of oil/osh. Since the update was already somewhat involved, I used the opportunity to also figure out how to patch out some C extensions and external dependencies that shouldn't be necessary just to use the parser. - update README.md - github.com/abathur/resholve/blob/master/CHANGELOG.md#v090-jan-29-2023 - github.com/abathur/nix-py-dev-oil/compare/v0.8.12.3...v0.14.0.0
20 lines
402 B
Nix
20 lines
402 B
Nix
{ fetchFromGitHub
|
|
, ...
|
|
}:
|
|
|
|
rec {
|
|
version = "0.9.0";
|
|
rSrc =
|
|
# local build -> `make ci`; `make clean` to restore
|
|
# return to remote source
|
|
# if builtins.pathExists ./.local
|
|
# then ./.
|
|
# else
|
|
fetchFromGitHub {
|
|
owner = "abathur";
|
|
repo = "resholve";
|
|
rev = "v${version}";
|
|
hash = "sha256-FRdCeeC2c3bMEXekEyilgW0PwFfUWGstZ5mXdmRPM5w=";
|
|
};
|
|
}
|