mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 07:31:19 +00:00
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
381 B
Nix
16 lines
381 B
Nix
{ callPackage, fetchurl, ... }@args:
|
|
|
|
callPackage ./unwrapped.nix (
|
|
rec {
|
|
version = "0.99";
|
|
src = fetchurl {
|
|
url = "https://downloads.factorcode.org/releases/${version}/factor-src-${version}.zip";
|
|
sha256 = "f5626bb3119bd77de9ac3392fdbe188bffc26557fab3ea34f7ca21e372a8443e";
|
|
};
|
|
}
|
|
// (builtins.removeAttrs args [
|
|
"callPackage"
|
|
"fetchurl"
|
|
])
|
|
)
|