Begin
This commit is contained in:
130
Masons.qnt
Normal file
130
Masons.qnt
Normal file
@ -0,0 +1,130 @@
|
||||
module mafia {
|
||||
import basicSpells.* from "basicspells"
|
||||
const players : Set[str]
|
||||
type Alignment = Scum | Town
|
||||
type Role = Mafia | Banana | Doctor | Mover | Gunsmith | Vigilante(int) | Mason | Villager
|
||||
type Phase = Day | Night
|
||||
type LifeState = Alive | Dead
|
||||
type Status = Pending | Done(Alignment)
|
||||
type PlayerFeatures = {
|
||||
name: str,
|
||||
alignment: Alignment,
|
||||
role: Role,
|
||||
status: LifeState,
|
||||
voted: bool,
|
||||
mascot: bool,
|
||||
nominated: bool,
|
||||
}
|
||||
|
||||
var players_to_features: str -> PlayerFeatures
|
||||
var votes_by_player: str -> int
|
||||
var game_phase: Phase
|
||||
var game_status: Status
|
||||
var last_saved: str
|
||||
|
||||
pure def all_voted(players: str -> PlayerFeatures): bool =
|
||||
players.values().filter(p => p.status == Alive).forall(p => p.voted == true)
|
||||
|
||||
pure def alive_mafia(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.alignment == Scum))
|
||||
|
||||
pure def alive_town(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.alignment == Town))
|
||||
|
||||
pure def mascots_alive(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.mascot))
|
||||
|
||||
pure def doc_alive(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.role == Doctor))
|
||||
|
||||
pure def vig0_alive(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.role == Vigilante(0)))
|
||||
|
||||
pure def vig1_alive(players: str -> PlayerFeatures): int =
|
||||
size(players.values().filter((p) => p.status == Alive and p.role == Vigilante(1)))
|
||||
|
||||
pure def mafia_lose_condition_active(players: str -> PlayerFeatures):bool = {
|
||||
val mafias = alive_mafia(players)
|
||||
val mafia_aligned = if (size(keys(players)) < 11)
|
||||
(mafias + mascots_alive(players))
|
||||
else mafias
|
||||
2 > mafia_aligned
|
||||
}
|
||||
|
||||
pure def mafia_win_condition_active(players: str -> PlayerFeatures): bool = alive_mafia(players) == alive_town(players)
|
||||
|
||||
pure def gen_list_of_roles(n: int): List[Role] = {
|
||||
val special: List[Role] =
|
||||
if (Set(7).contains(n)) [Banana]
|
||||
else if (Set(8).contains(n)) [Doctor]
|
||||
else if (Set(9).contains(n)) [Mover]
|
||||
else if (Set(10).contains(n)) [Doctor]
|
||||
else if (Set(11,12).contains(n)) [Doctor, Gunsmith]
|
||||
else if (Set(13,14).contains(n)) [Doctor, Banana]
|
||||
else if (Set(15,16).contains(n)) [Mason, Mason, Gunsmith]
|
||||
else if (Set(17,18).contains(n)) [Mover, Gunsmith]
|
||||
else if (Set(19,20).contains(n)) [Mason,Mason,Doctor,Vigilante(0)]
|
||||
else if (Set(21,22).contains(n)) [Vigilante(0), Vigilante(0), Doctor, Gunsmith]
|
||||
else if (Set(23,24,25,26).contains(n)) [Vigilante(0), Vigilante(0), Vigilante(1), Vigilante(1), Banana]
|
||||
else []
|
||||
val mafias: List [Role] = repeat((n+1)/4, Mafia)
|
||||
if (n < 7 or n > 26) [] else
|
||||
special.concat(mafias)
|
||||
.concat(repeat(n-length(special)-length(mafias),Villager))
|
||||
}
|
||||
|
||||
val get_most_voted_players = {
|
||||
if (all_voted(players_to_features)) {
|
||||
val max_votes = players.fold(-1, (acc, p) => {
|
||||
val votes = votes_by_player.get(p)
|
||||
max(votes,acc)
|
||||
})
|
||||
players.filter(p => votes_by_player.get(p) == max_votes)
|
||||
} else Set() // Return an empty set if not all players have voted
|
||||
}
|
||||
|
||||
pure def update_status(players: str -> PlayerFeatures): Status =
|
||||
if (mafia_lose_condition_active(players)) Done(Town) else
|
||||
if (mafia_win_condition_active(players)) Done(Scum) else
|
||||
Pending
|
||||
|
||||
pure def update_after_kill(victims: List[str], players: str -> PlayerFeatures): str -> PlayerFeatures =
|
||||
victims.foldl(players, (curr, victim) => curr.setBy(victim, p => {...p, status: Dead}))
|
||||
|
||||
pure def update_after_hanging(victim: str, players: str -> PlayerFeatures): str -> PlayerFeatures = {
|
||||
val playersNew = update_after_kill([victim], players)
|
||||
playersNew.transformValues(p => {... p, voted: false})
|
||||
}
|
||||
|
||||
action nightPhase = all {
|
||||
nondet victimScum = players_to_features.values().filter(p => p.status == Alive and p.alignment == Town).oneOf()
|
||||
nondet doctorSave = players_to_features.values().filter(p => p.status == Alive and p.role != Doctor and p.name != last_saved).oneOf()
|
||||
nondet victimVig0 = players_to_features.values().filter(p => p.status == Alive and p.role != Vigilante(0)).oneOf()
|
||||
nondet victimVig1 = players_to_features.values().filter(p => p.status == Alive and p.role != Vigilante(1)).oneOf()
|
||||
val victim = if (victimScum == doctorSave and doc_alive(players_to_features) > 0) [] else [victimScum]
|
||||
val victims: List[PlayerFeatures] = {
|
||||
val temp = if (vig0_alive(players_to_features) > 0) victim.append(victimVig0) else victim
|
||||
if (vig1_alive(players_to_features) > 0) temp.append(victimVig1) else temp
|
||||
}
|
||||
val updated_features = update_after_kill(victims.listMap(p => p.name),players_to_features)
|
||||
val new_game_status = update_status(updated_features)
|
||||
all {
|
||||
players_to_features.values().exists(p => p.status == Alive and p.role == Mafia),
|
||||
game_phase == Night,
|
||||
players_to_features' = updated_features,
|
||||
game_status' = new_game_status,
|
||||
game_phase' = Day,
|
||||
votes_by_player' = votes_by_player
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: Nomination, Voting, Execution, in that order
|
||||
|
||||
|
||||
// TODO: invariants
|
||||
// TODO: Win rates
|
||||
}
|
||||
module play_mafia {
|
||||
import mafia(players = Set("Pingu", "T-Dor", "Prince", "Benjamin", "Barwe", "Draken", "Ikka", "Krig", "Izza", "Underhill", "Geting", "Igelkott", "Ugglan", "Joppe", "Människan", "Wisdom")).*
|
||||
}
|
||||
|
||||
388
basicspells.qnt
Normal file
388
basicspells.qnt
Normal file
@ -0,0 +1,388 @@
|
||||
// Stolen from https://github.com/informalsystems/quint/blob/main/examples/spells/basicSpells.qnt and slightly modified.
|
||||
|
||||
// -*- mode: Bluespec; -*-
|
||||
/**
|
||||
* This module collects definitions that are ubiquitous.
|
||||
* One day they will become the standard library of Quint.
|
||||
*/
|
||||
module basicSpells {
|
||||
/// Option type, which may hold some value or none
|
||||
type Option[a] = Some(a) | None
|
||||
|
||||
/// An annotation for writing preconditions.
|
||||
/// - @param cond condition to check
|
||||
/// - @returns true if and only if cond evaluates to true
|
||||
pure def require(cond: bool): bool = cond
|
||||
|
||||
run requireTest = all {
|
||||
assert(require(4 > 3)),
|
||||
assert(not(require(false))),
|
||||
}
|
||||
|
||||
/// A convenience operator that returns a string error code,
|
||||
/// if the condition does not hold true.
|
||||
///
|
||||
/// - @param cond condition to check
|
||||
/// - @param error a non-empty error message
|
||||
/// - @returns "", when cond holds true; otherwise error
|
||||
pure def requires(cond: bool, error: str): str = {
|
||||
if (cond) "" else error
|
||||
}
|
||||
|
||||
run requiresTest = all {
|
||||
assert(requires(4 > 3, "4 > 3") == ""),
|
||||
assert(requires(4 < 3, "false: 4 < 3") == "false: 4 < 3"),
|
||||
}
|
||||
|
||||
|
||||
/// Compute the maximum of two integers.
|
||||
///
|
||||
/// - @param i first integer
|
||||
/// - @param j second integer
|
||||
/// - @returns the maximum of i and j
|
||||
pure def max(i: int, j: int): int = {
|
||||
if (i > j) i else j
|
||||
}
|
||||
|
||||
run maxTest = all {
|
||||
assert(max(3, 4) == 4),
|
||||
assert(max(6, 3) == 6),
|
||||
assert(max(10, 10) == 10),
|
||||
assert(max(-3, -5) == -3),
|
||||
assert(max(-5, -3) == -3),
|
||||
}
|
||||
|
||||
/// Compute the minimum of two integers.
|
||||
///
|
||||
/// - @param i first integer
|
||||
/// - @param j second integer
|
||||
/// - @returns the minimum of i and j
|
||||
pure def min(i: int, j: int): int = {
|
||||
if (i < j) i else j
|
||||
}
|
||||
|
||||
run minTest = all {
|
||||
assert(min(3, 4) == 3),
|
||||
assert(min(6, 3) == 3),
|
||||
assert(min(10, 10) == 10),
|
||||
assert(min(-3, -5) == -5),
|
||||
assert(min(-5, -3) == -5),
|
||||
}
|
||||
|
||||
/// Compute the absolute value of an integer
|
||||
///
|
||||
/// - @param i : an integer whose absolute value we are interested in
|
||||
/// - @returns |i|, the absolute value of i
|
||||
pure def abs(i: int): int = {
|
||||
if (i < 0) -i else i
|
||||
}
|
||||
|
||||
run absTest = all {
|
||||
assert(abs(3) == 3),
|
||||
assert(abs(-3) == 3),
|
||||
assert(abs(0) == 0),
|
||||
}
|
||||
|
||||
/// Remove a set element.
|
||||
///
|
||||
/// - @param s a set to remove an element from
|
||||
/// - @param elem an element to remove
|
||||
/// - @returns a new set that contains all elements of set but elem
|
||||
pure def setRemove(s: Set[a], elem: a): Set[a] = {
|
||||
s.exclude(Set(elem))
|
||||
}
|
||||
|
||||
run setRemoveTest = all {
|
||||
assert(Set(2, 4) == Set(2, 3, 4).setRemove(3)),
|
||||
assert(Set() == Set().setRemove(3)),
|
||||
}
|
||||
|
||||
/// Adds an element to a set.
|
||||
///
|
||||
/// - @param s a set to add an element to
|
||||
/// - @param elem an element to add
|
||||
/// - @returns a new set that contains all elements of set and elem
|
||||
pure def setAdd(s: Set[a], elem: a): Set[a] = {
|
||||
s.union(Set(elem))
|
||||
}
|
||||
|
||||
run setAddTest = all{
|
||||
assert(Set(2, 3, 4) == Set(2, 4).setAdd(3)),
|
||||
assert(Set(3) == Set().setAdd(3)),
|
||||
assert(Set(2,4) == Set(2,4).setAdd(4)),
|
||||
}
|
||||
|
||||
/// Test whether a key is present in a map
|
||||
///
|
||||
/// - @param m a map to query
|
||||
/// - @param key the key to look for
|
||||
/// - @returns true if and only map has an entry associated with key
|
||||
pure def has(m: a -> b, key: a): bool = {
|
||||
m.keys().contains(key)
|
||||
}
|
||||
|
||||
run hasTest = all {
|
||||
assert(Map(2 -> 3, 4 -> 5).has(2)),
|
||||
assert(not(Map(2 -> 3, 4 -> 5).has(6))),
|
||||
}
|
||||
|
||||
/// Get the map value associated with a key, or the default,
|
||||
/// if the key is not present.
|
||||
///
|
||||
/// - @param m the map to query
|
||||
/// - @param key the key to search for
|
||||
/// - @returns the value associated with the key, if key is
|
||||
/// present in the map, and default otherwise
|
||||
pure def getOrElse(m: a -> b, key: a, default: b): b = {
|
||||
if (m.has(key)) {
|
||||
m.get(key)
|
||||
} else {
|
||||
default
|
||||
}
|
||||
}
|
||||
|
||||
run getOrElseTest = all {
|
||||
assert(Map(2 -> 3, 4 -> 5).getOrElse(2, 0) == 3),
|
||||
assert(Map(2 -> 3, 4 -> 5).getOrElse(7, 11) == 11),
|
||||
}
|
||||
|
||||
/// Remove a map entry.
|
||||
///
|
||||
/// - @param m a map to remove an entry from
|
||||
/// - @param key the key of an entry to remove
|
||||
/// - @returns a new map that contains all entries of map
|
||||
/// that do not have the key key
|
||||
pure def mapRemove(m: a -> b, key: a): a -> b = {
|
||||
m.keys().setRemove(key).mapBy(k => m.get(k))
|
||||
}
|
||||
|
||||
run mapRemoveTest = all {
|
||||
assert(Map(3 -> 4, 7 -> 8) == Map(3 -> 4, 5 -> 6, 7 -> 8).mapRemove(5)),
|
||||
assert(Map() == Map().mapRemove(3)),
|
||||
}
|
||||
|
||||
/// Removes a set of map entries.
|
||||
///
|
||||
/// - @param m a map to remove entries from
|
||||
/// - @param ks a set of keys for entries to remove from the map
|
||||
/// - @returns a new map that contains all entries of map
|
||||
/// that do not have a key in keys
|
||||
pure def mapRemoveAll(m: a -> b, ks: Set[a]): a -> b = {
|
||||
m.keys().exclude(ks).mapBy(k => m.get(k))
|
||||
}
|
||||
|
||||
run mapRemoveAllTest =
|
||||
val m = Map(3 -> 4, 5 -> 6, 7 -> 8)
|
||||
all {
|
||||
assert(m.mapRemoveAll(Set(5, 7)) == Map(3 -> 4)),
|
||||
assert(m.mapRemoveAll(Set(5, 99999)) == Map(3 -> 4, 7 -> 8)),
|
||||
}
|
||||
|
||||
/// Get the set of values of a map.
|
||||
///
|
||||
/// - @param map a map from type a to type b
|
||||
/// - @returns the set of all values in the map
|
||||
pure def values(m: a -> b): Set[b] = {
|
||||
m.keys().map(k => m.get(k))
|
||||
}
|
||||
|
||||
run valuesTest = all {
|
||||
assert(values(Map()) == Set()),
|
||||
assert(values(Map(1 -> 2, 2 -> 3)) == Set(2, 3)),
|
||||
assert(values(Map(1 -> 2, 2 -> 3, 3 -> 2)) == Set(2, 3)),
|
||||
}
|
||||
|
||||
/// Whether a set is empty
|
||||
///
|
||||
/// - @param s a set of any type
|
||||
/// - @returns true iff the set is the empty set
|
||||
pure def empty(s: Set[a]): bool = s == Set()
|
||||
|
||||
run emptyTest = all {
|
||||
assert(empty(Set()) == true),
|
||||
assert(empty(Set(1, 2)) == false),
|
||||
assert(empty(Set(Set())) == false),
|
||||
}
|
||||
|
||||
/// Sort a list, given the ordering operator.
|
||||
///
|
||||
/// - @param list a list to sort
|
||||
/// - @param lt a definition of "less than"
|
||||
/// - @returns the sorted version of list
|
||||
pure def sortList(list: List[a], lt: (a, a) => bool): List[a] = {
|
||||
pure def insertInOrder(sortedList: List[a], num: a): List[a] = {
|
||||
match range(0, sortedList.length()).findFirst(i => not(lt(sortedList[i], num))) {
|
||||
| None => sortedList.append(num)
|
||||
| Some(index) => sortedList.slice(0, index).append(num).concat(sortedList.slice(index, sortedList.length()))
|
||||
}
|
||||
}
|
||||
|
||||
list.foldl([], (sortedList, num) => insertInOrder(sortedList, num))
|
||||
}
|
||||
|
||||
run listSortedTest = all {
|
||||
assert([ 1, 3, 5 ] == sortList([ 5, 1, 3 ], (x, y) => x < y)),
|
||||
assert([ 1, 1, 3, 5, 5 ] == sortList([ 5, 1, 3, 1, 5 ], (x, y) => x < y)),
|
||||
}
|
||||
|
||||
/// Apply an operator to all values of a map
|
||||
///
|
||||
/// - @param m: a map of any type
|
||||
/// - @param f: an operator with one argument with the same type as the map's values
|
||||
/// - @returns a map with same keys as m and f applied to the values
|
||||
pure def transformValues(m: a -> b, f: (b) => c): a -> c = {
|
||||
m.keys().mapBy(k => f(m.get(k)))
|
||||
}
|
||||
|
||||
run transformValuesTest = {
|
||||
pure val m = Map("a" -> 1, "b" -> 2)
|
||||
assert(m.transformValues(x => x + 1) == Map("a" -> 2, "b" -> 3))
|
||||
}
|
||||
|
||||
/// map a function over a list
|
||||
///
|
||||
/// - @param l: a list of any type
|
||||
/// - @param f: a function to apply to each element of the list
|
||||
/// - @returns a list of the results of applying f to each element of l
|
||||
pure def listMap(l: List[a], f: (a) => b): List[b] = {
|
||||
range(0, l.length()).foldl([], (acc, i) => {
|
||||
acc.append(f(l[i]))
|
||||
})
|
||||
}
|
||||
|
||||
run listMapTest = all {
|
||||
assert(listMap([1, 2, 3], x => x + 1) == [2, 3, 4]),
|
||||
assert(listMap([1, 2, 3], x => x > 1) == [false, true, true]),
|
||||
}
|
||||
|
||||
/// The last element of a list
|
||||
///
|
||||
/// - @param v: a list of any type
|
||||
/// - @returns the last element of the list
|
||||
pure def last(v: List[a]): a = {
|
||||
v[v.length() - 1]
|
||||
}
|
||||
|
||||
run lastTest = all {
|
||||
assert(last([1, 2, 3]) == 3),
|
||||
assert(last([1]) == 1),
|
||||
}
|
||||
|
||||
/// `decreasingRange(i, j)` is the list of integers between `j` and `i`
|
||||
/// both `i` and `j` are inclusive.
|
||||
/// The behavior is undefined if `i < j`.
|
||||
///
|
||||
/// - @param start: the first integer in the range
|
||||
/// - @param end: the last integer in the range
|
||||
pure def decreasingRange(start: int, end: int): List[int] = {
|
||||
range(end, start + 1).foldl([], (acc, i) => {
|
||||
List(i).concat(acc)
|
||||
})
|
||||
}
|
||||
|
||||
run decreasingRangeTest = all {
|
||||
assert(decreasingRange(5, 1) == [5, 4, 3, 2, 1]),
|
||||
}
|
||||
|
||||
/// `takeWhile(l, cond)` is the longest prefix of `l` such that all elements
|
||||
/// satisfy the condition `cond`.
|
||||
///
|
||||
/// - @param l: a list of any type
|
||||
/// - @param cond: a function that takes an element of the list and returns a boolean
|
||||
/// - @returns the longest prefix of `l` such that all elements satisfy `cond`
|
||||
pure def takeWhile(l: List[a], cond: (a) => bool): List[a] = {
|
||||
pure val result = l.foldl(([], true), (acc, e) => {
|
||||
if (acc._2 and cond(e)) {
|
||||
(acc._1.append(e), true)
|
||||
} else {
|
||||
(acc._1, false)
|
||||
}
|
||||
})
|
||||
|
||||
result._1
|
||||
}
|
||||
|
||||
run takeWhileTest = all {
|
||||
assert(takeWhile([1, 5, 4, 3], (x) => x % 2 == 1) == [1, 5]),
|
||||
}
|
||||
|
||||
/// `isPrefixOf(l1, l2)` is true iff `l1` is a prefix of `l2`.
|
||||
///
|
||||
/// - @param l1: a list of any type
|
||||
/// - @param l2: a list of same type as `l1`
|
||||
/// - @returns true iff `l1` is a prefix of `l2`
|
||||
pure def isPrefixOf(l1: List[a], l2: List[a]): bool = {
|
||||
if (l1.length() > l2.length()) {
|
||||
false
|
||||
} else {
|
||||
l1.indices().forall(i => l1[i] == l2[i])
|
||||
}
|
||||
}
|
||||
|
||||
run isPrefixOfTest = all {
|
||||
assert(isPrefixOf([1, 2], [1, 2, 3])),
|
||||
assert(not(isPrefixOf([1, 2], [1, 3, 2]))),
|
||||
assert(not(isPrefixOf([1, 2], [1]))),
|
||||
assert(isPrefixOf([], [1, 2])),
|
||||
assert(isPrefixOf([], [])),
|
||||
}
|
||||
|
||||
/// `find(s, f)` is an element of `s` that satisfies the predicate `f`, or None
|
||||
/// if no such element exists.
|
||||
///
|
||||
/// - @param s: a set of any type
|
||||
/// - @param f: a function that takes an element of the set and returns a boolean
|
||||
/// - @returns an element of `s` that satisfies `f`, or None
|
||||
pure def find(s: Set[a], f: (a) => bool): Option[a] = s.fold(None, (a, i) => if (f(i)) Some(i) else a)
|
||||
|
||||
run findTest = all {
|
||||
assert(find(Set(1, 2, 3), x => x == 2) == Some(2)),
|
||||
assert(find(Set(1, 2, 3), x => x == 4) == None),
|
||||
}
|
||||
|
||||
/// `findFirst(l, f)` is the first element of `l` that satisfies the predicate `f`, or None
|
||||
/// if no such element exists.
|
||||
///
|
||||
/// - @param l: a list of any type
|
||||
/// - @param f: a function that takes an element of the list and returns a boolean
|
||||
/// - @returns the first element of `l` that satisfies `f`, or None
|
||||
pure def findFirst(l: List[a], f: (a) => bool): Option[a] = l.foldl(None, (a, i) => if (a == None and f(i)) Some(i) else a)
|
||||
|
||||
run findFirstTest = all {
|
||||
assert(findFirst([1, 2, 3], x => x > 1) == Some(2)),
|
||||
assert(findFirst([1, 2, 3], x => x == 4) == None),
|
||||
}
|
||||
|
||||
/// `setByWithDefault(m, k, op, default)` is a map that is the same as `m` except that
|
||||
/// the value associated with `k` is `op(m[k])` if `k` is present in `m`, and `op(default)` otherwise.
|
||||
///
|
||||
/// - @param m: a map from type `a` to type `b`
|
||||
/// - @param k: a key of type `a`
|
||||
/// - @param op: a function to transform the value of the key
|
||||
/// - @param default: the value to use if the key is not present in the map
|
||||
/// - @returns a new map with the updated key.
|
||||
pure def setByWithDefault(m: a -> b, k: a, op: (b) => b, default: b): a -> b = {
|
||||
if (m.has(k))
|
||||
m.setBy(k, op)
|
||||
else
|
||||
m.put(k, default).setBy(k, op)
|
||||
}
|
||||
|
||||
run setByWithDefaultTest = all {
|
||||
assert(setByWithDefault(Map(1 -> 2, 2 -> 3), 1, x => x + 1, 0) == Map(1 -> 3, 2 -> 3)),
|
||||
assert(setByWithDefault(Map(1 -> 2, 2 -> 3), 3, x => x + 1, 0) == Map(1 -> 2, 2 -> 3, 3 -> 1)),
|
||||
}
|
||||
|
||||
/// `repeat(n, e)` is a list of n elements, where all the elements are e.
|
||||
///
|
||||
/// - @param n: amount of elements
|
||||
/// - @param e: the element to repeat
|
||||
/// - @returns a list of n element e.
|
||||
pure def repeat(n:int, e: a): List[a] = listMap(range(0,n), x => e)
|
||||
|
||||
run repeatTest = all {
|
||||
assert(repeat(0,1) == []),
|
||||
assert(repeat(5,1) == [1,1,1,1,1]),
|
||||
assert(repeat(2,true) == [true,true])
|
||||
}
|
||||
}
|
||||
82
flake.lock
generated
Normal file
82
flake.lock
generated
Normal file
@ -0,0 +1,82 @@
|
||||
{
|
||||
"nodes": {
|
||||
"flake-parts": {
|
||||
"inputs": {
|
||||
"nixpkgs-lib": "nixpkgs-lib"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1760948891,
|
||||
"narHash": "sha256-TmWcdiUUaWk8J4lpjzu4gCGxWY6/Ok7mOK4fIFfBuU4=",
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"rev": "864599284fc7c0ba6357ed89ed5e2cd5040f0c04",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "hercules-ci",
|
||||
"repo": "flake-parts",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1760878510,
|
||||
"narHash": "sha256-K5Osef2qexezUfs0alLvZ7nQFTGS9DL2oTVsIXsqLgs=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5e2a59a5b1a82f89f2c7e598302a9cacebb72a67",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-lib": {
|
||||
"locked": {
|
||||
"lastModified": 1754788789,
|
||||
"narHash": "sha256-x2rJ+Ovzq0sCMpgfgGaaqgBSwY+LST+WbZ6TytnT9Rk=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nixpkgs.lib",
|
||||
"rev": "a73b9c743612e4244d865a2fdee11865283c04e6",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"repo": "nixpkgs.lib",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"npm-package": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1741180162,
|
||||
"narHash": "sha256-4rlTM1eFDuR8Hz9WDEZSa3AsQaiSD2QtDCjYOjKi/ow=",
|
||||
"owner": "netbrain",
|
||||
"repo": "npm-package",
|
||||
"rev": "1497926028ff0a253e4308459711f41a560a5272",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "netbrain",
|
||||
"repo": "npm-package",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"flake-parts": "flake-parts",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"npm-package": "npm-package"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
46
flake.nix
Normal file
46
flake.nix
Normal file
@ -0,0 +1,46 @@
|
||||
{
|
||||
description = ":3";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
npm-package = {
|
||||
url = "github:netbrain/npm-package";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs@{ nixpkgs, flake-parts, npm-package, ... }:
|
||||
flake-parts.lib.mkFlake {inherit inputs;} {
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
];
|
||||
|
||||
perSystem = {self', pkgs, system, ...}:
|
||||
{
|
||||
# packages.default = self'.packages.masons;
|
||||
# packages.masons = pkgs.stdenv.mkDerivation {
|
||||
# pname = "Masons";
|
||||
# version = "0.0.1";
|
||||
|
||||
# src = ./.;
|
||||
|
||||
# nativeBuildInputs = with pkgs; [ ];
|
||||
# buildInputs = [ ];
|
||||
|
||||
# };
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.quint
|
||||
(npm-package.lib.${system}.npmPackage {
|
||||
name = "quint-language-server";
|
||||
packageName = "@informalsystems/quint-language-server";
|
||||
version = "0.17.0";
|
||||
})
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
BIN
quint-cheatsheet.pdf
Normal file
BIN
quint-cheatsheet.pdf
Normal file
Binary file not shown.
Reference in New Issue
Block a user