Files
nixpkgs/pkgs/development/compilers/factor-lang/0.99.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
281 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{ callPackage, fetchurl }:
callPackage ./unwrapped.nix rec {
version = "0.99";
src = fetchurl {
url = "https://downloads.factorcode.org/releases/${version}/factor-src-${version}.zip";
sha256 = "f5626bb3119bd77de9ac3392fdbe188bffc26557fab3ea34f7ca21e372a8443e";
};
}