nixpkgs/pkgs/development/compilers/ciao/default.nix
2021-04-10 06:44:18 +00:00

33 lines
741 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ciao";
version = "1.20.0";
src = fetchFromGitHub {
owner = "ciao-lang";
repo = "ciao";
rev = "v${version}";
sha256 = "sha256-Xp0ZQRi7mOO2WN/2hO6zgobDG3S0BEV+SgsaduBZ30U=";
};
configurePhase = ''
./ciao-boot.sh configure --instype=global --prefix=$prefix
'';
buildPhase = ''
./ciao-boot.sh build
'';
installPhase = ''
./ciao-boot.sh install
'';
meta = with lib; {
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;
};
}