commit
24f9bc0243
32
pkgs/development/compilers/ciao/default.nix
Normal file
32
pkgs/development/compilers/ciao/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ciao";
|
||||
version = "1.19.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "ciao-lang";
|
||||
repo = "ciao";
|
||||
rev = "v${version}";
|
||||
sha256 = "03qzcb4ivgkiwdpw7a94dn74xqyxjwz5ilrr53rcblsh5ng299jp";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
./ciao-boot.sh configure --instype=global --prefix=$prefix
|
||||
'';
|
||||
|
||||
buildPhase = ''
|
||||
./ciao-boot.sh build
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
./ciao-boot.sh install
|
||||
'';
|
||||
|
||||
meta = with stdenv.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;
|
||||
};
|
||||
}
|
@ -8082,6 +8082,8 @@ in
|
||||
|
||||
bluespec = callPackage ../development/compilers/bluespec { };
|
||||
|
||||
ciao = callPackage ../development/compilers/ciao { };
|
||||
|
||||
colm = callPackage ../development/compilers/colm { };
|
||||
|
||||
colmap = libsForQt5.callPackage ../applications/science/misc/colmap { };
|
||||
|
Loading…
Reference in New Issue
Block a user