mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
lngen: init at unstable-2023-10-17
This commit is contained in:
parent
c41b4396b0
commit
68ce3b5fff
23
pkgs/by-name/ln/lngen/package.nix
Normal file
23
pkgs/by-name/ln/lngen/package.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib
|
||||
, haskellPackages
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
haskellPackages.mkDerivation {
|
||||
pname = "lngen";
|
||||
version = "unstable-2023-10-17";
|
||||
src = fetchFromGitHub {
|
||||
owner = "plclub";
|
||||
repo = "lngen";
|
||||
rev = "c7645001404e0e2fec2c56f128e30079b5b3fac6";
|
||||
hash = "sha256-2vUYHtl9yAadwdTtsjTI0klP+nRSYGXVpaSwD9EBTTI=";
|
||||
};
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
libraryHaskellDepends = with haskellPackages; [ base syb parsec containers mtl ];
|
||||
executableHaskellDepends = with haskellPackages; [ base ];
|
||||
homepage = "https://github.com/plclub/lngen";
|
||||
description = "Tool for generating Locally Nameless definitions and proofs in Coq, working together with Ott";
|
||||
maintainers = with lib.maintainers; [ chen ];
|
||||
license = lib.licenses.mit;
|
||||
}
|
Loading…
Reference in New Issue
Block a user