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

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

34 lines
865 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2020-04-25 06:38:02 +00:00
stdenv.mkDerivation rec {
pname = "ciao";
2022-09-29 10:58:30 +00:00
version = "1.22.0-m1";
2020-04-25 06:38:02 +00:00
src = fetchFromGitHub {
owner = "ciao-lang";
repo = "ciao";
rev = "v${version}";
2022-09-29 10:58:30 +00:00
sha256 = "sha256-p7QNSsDI8hVMPPfkX3PNjJo01hsPGKZ7jMR9Kmj2qxY=";
2020-04-25 06:38:02 +00:00
};
configurePhase = ''
./ciao-boot.sh configure --instype=global --prefix=$prefix
'';
buildPhase = ''
./ciao-boot.sh build
'';
installPhase = ''
./ciao-boot.sh install
'';
meta = with lib; {
2020-04-25 06:38:02 +00:00
homepage = "https://ciao-lang.org/";
description = "A general purpose, multi-paradigm programming language in the Prolog family";
license = licenses.lgpl21;
maintainers = with maintainers; [ suhr ];
platforms = platforms.unix;
2021-12-18 15:57:56 +00:00
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/ciao.x86_64-darwin
2020-04-25 06:38:02 +00:00
};
}