tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tlaps: deprecate phases
Felix Buehler
4 years ago
8ad1a785
44193bd5
+11
-7
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
logic
tlaplus
tlaps.nix
+11
-7
pkgs/applications/science/logic/tlaplus/tlaps.nix
···
1
{ fetchurl
2
-
, lib, stdenv
3
-
, ocaml, isabelle, cvc3, perl, wget, which
0
0
0
0
0
0
4
}:
5
6
stdenv.mkDerivation rec {
···
12
};
13
14
buildInputs = [ ocaml isabelle cvc3 perl wget which ];
15
-
16
-
phases = [ "unpackPhase" "installPhase" ];
17
18
installPhase = ''
19
mkdir -pv "$out"
···
45
and scalable to large system specifications. It provides a
46
consistent abstraction over the various “backend” verifiers.
47
'';
48
-
homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html";
49
-
license = lib.licenses.bsd2;
50
-
platforms = lib.platforms.unix;
51
maintainers = [ ];
52
};
53
···
1
{ fetchurl
2
+
, lib
3
+
, stdenv
4
+
, ocaml
5
+
, isabelle
6
+
, cvc3
7
+
, perl
8
+
, wget
9
+
, which
10
}:
11
12
stdenv.mkDerivation rec {
···
18
};
19
20
buildInputs = [ ocaml isabelle cvc3 perl wget which ];
0
0
21
22
installPhase = ''
23
mkdir -pv "$out"
···
49
and scalable to large system specifications. It provides a
50
consistent abstraction over the various “backend” verifiers.
51
'';
52
+
homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html";
53
+
license = lib.licenses.bsd2;
54
+
platforms = lib.platforms.unix;
55
maintainers = [ ];
56
};
57