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

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

10 lines
267 B
Nix
Raw Normal View History

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