base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ow / owl-lisp / package.nix
blob86b7242c31dda50e5fd97b990c2ad5b009422d1d
1 { lib, stdenv, fetchFromGitLab, which }:
3 stdenv.mkDerivation rec {
4   pname = "owl-lisp";
5   version = "0.2.2";
7   src = fetchFromGitLab {
8     owner  = "owl-lisp";
9     repo   = "owl";
10     rev    = "v${version}";
11     hash = "sha256-GfvOkYLo8fgAvGuUa59hDy+sWJSwyntwqMO8TAK/lUo=";
12   };
14   nativeBuildInputs = [ which ];
16   makeFlags = [ "PREFIX=${placeholder "out"}" "CC=${stdenv.cc.targetPrefix}cc" ];
18   # tests are run as part of the compilation process
19   doCheck = false;
21   meta = with lib; {
22     description = "Functional Scheme for world domination";
23     homepage    = "https://gitlab.com/owl-lisp/owl";
24     license     = licenses.mit;
25     maintainers = with maintainers; [ peterhoeg ];
26     platforms   = platforms.unix;
27   };