a6cddcfe93
Fixes issues with the help browser by copying vocabulary roots instead of symlinking them. Although, I am convinced that this is an issue that should be fixed upstream, eventually. Fixes #469242 Fixes #474869
16 lines
367 B
Nix
16 lines
367 B
Nix
{ callPackage, fetchurl, ... }@args:
|
|
|
|
callPackage ./unwrapped.nix (
|
|
rec {
|
|
version = "0.100";
|
|
src = fetchurl {
|
|
url = "https://downloads.factorcode.org/releases/${version}/factor-src-${version}.zip";
|
|
hash = "sha256-ei1x6mgEoDVe1mKfoWSGC9RgZCONovAPYfIdAlOGi+0=";
|
|
};
|
|
}
|
|
// (builtins.removeAttrs args [
|
|
"callPackage"
|
|
"fetchurl"
|
|
])
|
|
)
|