Skip to content

Commit

Permalink
tlaps: deprecate phases
Browse files Browse the repository at this point in the history
  • Loading branch information
Stunkymonkey committed Aug 16, 2021
1 parent 44193bd commit 8ad1a78
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions pkgs/applications/science/logic/tlaplus/tlaps.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{ fetchurl
, lib, stdenv
, ocaml, isabelle, cvc3, perl, wget, which
, lib
, stdenv
, ocaml
, isabelle
, cvc3
, perl
, wget
, which
}:

stdenv.mkDerivation rec {
Expand All @@ -13,8 +19,6 @@ stdenv.mkDerivation rec {

buildInputs = [ ocaml isabelle cvc3 perl wget which ];

phases = [ "unpackPhase" "installPhase" ];

installPhase = ''
mkdir -pv "$out"
export HOME="$out"
Expand Down Expand Up @@ -45,9 +49,9 @@ stdenv.mkDerivation rec {
and scalable to large system specifications. It provides a
consistent abstraction over the various “backend” verifiers.
'';
homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
homepage = "https://tla.msr-inria.inria.fr/tlaps/content/Home.html";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
maintainers = [ ];
};

Expand Down

0 comments on commit 8ad1a78

Please sign in to comment.