mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 05:37:40 +03:00
coqPackages.iris-named-props: new expression (#263100)
This commit is contained in:
parent
f40c787e84
commit
6a63b4a97a
17
pkgs/development/coq-modules/iris-named-props/default.nix
Normal file
17
pkgs/development/coq-modules/iris-named-props/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ lib, mkCoqDerivation, coq, version ? null, iris }:
|
||||
|
||||
mkCoqDerivation rec {
|
||||
pname = "iris-named-props";
|
||||
owner = "tchajed";
|
||||
inherit version;
|
||||
defaultVersion = with lib.versions; lib.switch coq.version [
|
||||
{ case = range "8.16" "8.18"; out = "2023-08-14"; }
|
||||
] null;
|
||||
release."2023-08-14".sha256 = "sha256-gu9qOdHO0qJ2B9Y9Vf66q08iNJcfuECJO66fizFB08g=";
|
||||
release."2023-08-14".rev = "ca1871dd33649f27257a0fbf94076acc80ecffbc";
|
||||
propagatedBuildInputs = [ iris ];
|
||||
meta = {
|
||||
description = "Named props for Iris";
|
||||
maintainers = with lib.maintainers; [ ineol ];
|
||||
};
|
||||
}
|
@ -70,6 +70,7 @@ let
|
||||
interval = callPackage ../development/coq-modules/interval {};
|
||||
InfSeqExt = callPackage ../development/coq-modules/InfSeqExt {};
|
||||
iris = callPackage ../development/coq-modules/iris {};
|
||||
iris-named-props = callPackage ../development/coq-modules/iris-named-props {};
|
||||
itauto = callPackage ../development/coq-modules/itauto { };
|
||||
ITree = callPackage ../development/coq-modules/ITree { };
|
||||
LibHyps = callPackage ../development/coq-modules/LibHyps {};
|
||||
|
Loading…
Reference in New Issue
Block a user