nixpkgs/pkgs/development/tools/analysis/spin/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, makeWrapper, bison, gcc
2016-03-26 08:44:09 +00:00
, withISpin ? true, tk, swarm, graphviz }:
2016-03-12 11:12:44 +00:00
let
binPath = lib.makeBinPath [ gcc ];
ibinPath = lib.makeBinPath [ gcc tk swarm graphviz tk ];
2016-03-12 11:12:44 +00:00
in stdenv.mkDerivation rec {
pname = "spin";
2019-01-18 16:16:48 +00:00
version = "6.4.9";
url-version = lib.replaceChars ["."] [""] version;
src = fetchurl {
# The homepage is behind CloudFlare anti-DDoS protection, which blocks cURL.
# Dropbox mirror from developers:
# https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AADZPqS4aoR-pjNF6OQXRLQHa
# (note that this URL doesn't work aross versions and hash should come from official site)
url = "https://www.dropbox.com/sh/fgzipzp4wpo3qc1/AABtxFePMJmPxsxSvU5cpxh8a/spin${url-version}.tar.gz?raw=1";
2019-01-18 16:16:48 +00:00
sha256 = "07b7wk3qyfnp4pgwicqd33l7i1krzyihx0cf9zkv81ywaklf5vll";
};
2016-03-12 11:12:44 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ bison ];
sourceRoot = "Spin/Src${version}";
2016-03-12 11:12:44 +00:00
installPhase = ''
2019-01-18 16:23:44 +00:00
install -Dm644 ../Man/spin.1 $out/share/man/man1/spin.1
2016-03-26 08:44:09 +00:00
install -Dm755 spin $out/bin/spin
2016-03-12 11:12:44 +00:00
wrapProgram $out/bin/spin \
--prefix PATH : ${binPath}
2016-03-26 08:44:09 +00:00
'' + lib.optionalString withISpin ''
install -Dm755 ../iSpin/ispin.tcl $out/bin/ispin
wrapProgram $out/bin/ispin \
--prefix PATH ':' "$out/bin:${ibinPath}"
2016-03-12 11:12:44 +00:00
'';
meta = with lib; {
description = "Formal verification tool for distributed software systems";
homepage = "http://spinroot.com/";
2016-02-27 11:09:44 +00:00
license = licenses.free;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}