nixpkgs/pkgs/development/compilers/teyjus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
759 B
Nix
Raw Normal View History

2023-06-29 17:20:38 +01:00
{ lib, fetchFromGitHub, buildDunePackage, flex, bison }:
2015-02-21 07:41:37 +00:00
2023-06-29 17:20:38 +01:00
buildDunePackage rec {
2019-08-13 22:52:01 +01:00
pname = "teyjus";
2023-06-29 17:20:38 +01:00
version = "2.1.1";
2015-02-21 07:41:37 +00:00
2022-01-07 16:09:33 +00:00
src = fetchFromGitHub {
owner = "teyjus";
repo = "teyjus";
2023-06-29 17:20:38 +01:00
rev = "refs/tags/v${version}";
hash = "sha256-N4XKDd0NFr501PYUdb7PM2sWh0uD1/SUFXoMr10f064=";
2015-02-21 07:41:37 +00:00
};
2023-01-09 19:35:45 +00:00
strictDeps = true;
2023-06-29 17:20:38 +01:00
nativeBuildInputs = [ flex bison ];
2015-02-21 07:41:37 +00:00
hardeningDisable = [ "format" ];
2016-02-25 02:20:27 +00:00
2023-06-29 17:20:38 +01:00
doCheck = true;
2015-02-21 07:41:37 +00:00
meta = with lib; {
2015-02-21 07:41:37 +00:00
description = "An efficient implementation of the Lambda Prolog language";
homepage = "https://github.com/teyjus/teyjus";
2023-06-29 17:20:38 +01:00
changelog = "https://github.com/teyjus/teyjus/releases/tag/v${version}";
license = lib.licenses.gpl3;
2015-02-21 07:41:37 +00:00
maintainers = [ maintainers.bcdarwin ];
2023-01-09 19:35:45 +00:00
platforms = platforms.unix;
2015-02-21 07:41:37 +00:00
};
}