nixpkgs/pkgs/development/compilers/owl-lisp/default.nix

29 lines
733 B
Nix
Raw Normal View History

2021-02-13 01:31:00 +00:00
{ lib, stdenv, fetchFromGitLab, which }:
2017-07-21 12:03:20 +00:00
stdenv.mkDerivation rec {
2019-08-20 06:27:02 +00:00
pname = "owl-lisp";
2021-02-13 01:30:58 +00:00
version = "0.2";
2017-07-21 12:03:20 +00:00
2019-08-20 06:27:02 +00:00
src = fetchFromGitLab {
owner = "owl-lisp";
repo = "owl";
2017-07-21 12:03:20 +00:00
rev = "v${version}";
2021-02-13 01:30:58 +00:00
sha256 = "sha256-G12yZxlq6Hss5j4Seq1hcPQWXMIeL2Z8VkBdmIGESX8=";
2017-07-21 12:03:20 +00:00
};
2018-05-10 14:27:56 +00:00
nativeBuildInputs = [ which ];
makeFlags = [ "PREFIX=${placeholder "out"}" "CC=${stdenv.cc.targetPrefix}cc" ];
2017-07-21 12:03:20 +00:00
2018-05-10 14:27:56 +00:00
# tests are run as part of the compilation process
2017-07-21 12:03:20 +00:00
doCheck = false;
meta = with lib; {
2019-08-20 06:27:02 +00:00
description = "A functional Scheme for world domination";
homepage = "https://gitlab.com/owl-lisp/owl";
2017-07-21 12:03:20 +00:00
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
2021-02-13 01:31:00 +00:00
platforms = platforms.unix;
2017-07-21 12:03:20 +00:00
};
}