2009-05-03 16:35:43 +02:00
|
|
|
{stdenv, fetchurl, flex, yacc, tk }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "spin-5.1.7";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://spinroot.com/spin/Src/spin517.tar.gz;
|
|
|
|
sha256 = "03c6bmar4z13jx7dddb029f0qnmgl8x4hyfwn3qijjyd4dbliiw6";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ flex yacc tk ];
|
|
|
|
|
2009-05-06 23:03:49 +02:00
|
|
|
patchPhase = ''
|
|
|
|
cd Src*
|
|
|
|
sed -i -e 's/-DNXT/-DNXT -DCPP="\\"gcc -E -x c\\""/' makefile
|
|
|
|
'';
|
2009-05-03 16:35:43 +02:00
|
|
|
installPhase = ''
|
|
|
|
ensureDir $out/bin
|
|
|
|
cp ../Xspin*/xsp* $out/bin/xspin
|
2009-05-03 16:35:56 +02:00
|
|
|
sed -i -e '1s@^#!/bin/sh@#!${tk}/bin/wish@' \
|
2009-05-03 16:35:43 +02:00
|
|
|
-e '/exec wish/d' $out/bin/xspin
|
|
|
|
cp spin $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Formal verification tool for distributed software systems";
|
|
|
|
homepage = http://spinroot.com/;
|
|
|
|
license = "free";
|
|
|
|
};
|
|
|
|
}
|