mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 05:19:00 +00:00
nixpkgs: add sapic as a dependency to tamarin-prover
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
3813ab2589
commit
bae2e7ceb3
@ -1,6 +1,6 @@
|
||||
{ haskell, haskellPackages, mkDerivation, fetchFromGitHub, lib
|
||||
# the following are non-haskell dependencies
|
||||
, makeWrapper, which, maude, graphviz
|
||||
, makeWrapper, which, maude, graphviz, sapic
|
||||
}:
|
||||
|
||||
let
|
||||
@ -68,7 +68,7 @@ mkDerivation (common "tamarin-prover" src // {
|
||||
# wrap the prover to be sure it can find maude
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/tamarin-prover \
|
||||
--prefix PATH : ${lib.makeBinPath [ which maude graphviz ]}
|
||||
--prefix PATH : ${lib.makeBinPath [ which maude graphviz sapic ]}
|
||||
'';
|
||||
|
||||
executableToolDepends = [ makeWrapper ];
|
||||
|
@ -5969,8 +5969,8 @@ with pkgs;
|
||||
|
||||
tamarin-prover =
|
||||
(haskellPackages.callPackage ../applications/science/logic/tamarin-prover {
|
||||
# do not use the haskell packages 'graphviz' and 'maude'
|
||||
inherit maude which;
|
||||
# NOTE: do not use the haskell packages 'graphviz' and 'maude'
|
||||
inherit maude which sapic;
|
||||
graphviz = graphviz-nox;
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user