lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 27 lines 950 B view raw
1{ lib, mkCoqDerivation, which, coq, version ? null }: 2 3mkCoqDerivation { 4 pname = "ltac2"; 5 owner = "coq"; 6 inherit version; 7 defaultVersion = with lib.versions; lib.switch coq.coq-version [ 8 { case = "8.10"; out = "0.3"; } 9 { case = "8.9"; out = "0.2"; } 10 { case = "8.8"; out = "0.1"; } 11 { case = "8.7"; out = "0.1-8.7"; } 12 ] null; 13 release."0.3".sha256 = "0pzs5nsakh4l8ffwgn4ryxbnxdv2x0r1i7bc598ij621haxdirrr"; 14 release."0.2".sha256 = "0xby1kb26r9gcvk5511wqj05fqm9paynwfxlfqkmwkgnfmzk0x73"; 15 release."0.1".sha256 = "1zz26cyv99whj7rrpgnhhm9dfqnpmrx5pqizn8ihf8jkq8d4drz7"; 16 release."0.1-8.7".version = "0.1"; 17 release."0.1-8.7".rev = "v0.1-8.7"; 18 release."0.1-8.7".sha256 = "0l6wiwi4cvd0i324fb29i9mdh0ijlxzggw4mrjjy695l2qdnlgg0"; 19 20 mlPlugin = true; 21 22 meta = with lib; { 23 description = "A robust and expressive tactic language for Coq"; 24 maintainers = [ maintainers.vbgl ]; 25 license = licenses.lgpl21; 26 }; 27}