nixpkgs/pkgs/development/compilers/copper/default.nix

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

33 lines
800 B
Nix
Raw Normal View History

{ lib, stdenv
2020-05-22 00:03:05 +03:00
, fetchurl
, libffi
}:
stdenv.mkDerivation rec {
pname = "copper";
2021-12-12 16:13:58 +03:00
version = "4.6";
2020-05-22 00:03:05 +03:00
src = fetchurl {
url = "https://tibleiz.net/download/copper-${version}-src.tar.gz";
2021-12-12 16:13:58 +03:00
sha256 = "sha256-tyxAMJp4H50eBz8gjt2O3zj5fq6nOIXKX47wql8aUUg=";
2020-05-22 00:03:05 +03:00
};
buildInputs = [
libffi
];
postPatch = ''
patchShebangs .
'';
buildPhase = ''
make BACKEND=elf64 boot-elf64
make BACKEND=elf64 COPPER=stage3/copper-elf64 copper-elf64
'';
installPhase = ''
make BACKEND=elf64 install prefix=$out
'';
meta = with lib; {
description = "Simple imperative language, statically typed with type inference and genericity";
2020-05-22 00:03:05 +03:00
homepage = "https://tibleiz.net/copper/";
license = licenses.bsd2;
platforms = platforms.x86_64;
2021-05-15 00:35:55 +03:00
broken = stdenv.isDarwin;
2020-05-22 00:03:05 +03:00
};
}