2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2020-04-25 07:38:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ciao";
|
2021-04-10 07:44:18 +01:00
|
|
|
version = "1.20.0";
|
2020-04-25 07:38:02 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ciao-lang";
|
|
|
|
repo = "ciao";
|
|
|
|
rev = "v${version}";
|
2021-04-10 07:44:18 +01:00
|
|
|
sha256 = "sha256-Xp0ZQRi7mOO2WN/2hO6zgobDG3S0BEV+SgsaduBZ30U=";
|
2020-04-25 07:38:02 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
./ciao-boot.sh configure --instype=global --prefix=$prefix
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./ciao-boot.sh build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
./ciao-boot.sh install
|
|
|
|
'';
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2020-04-25 07:38:02 +01: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 07:38:02 +01:00
|
|
|
};
|
|
|
|
}
|