Files
nixpkgs/pkgs/development/compilers/factor-lang/0.99.nix
Michael Raitza a6cddcfe93 factor-lang: 0.100 -> 0.101
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
2026-01-09 13:20:10 +01:00

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"
])
)