tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ltl2ba: fix build on darwin
Vincent Laporte
10 years ago
c2a2c2ec
dfbf0b27
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
logic
ltl2ba
default.nix
+6
-1
pkgs/applications/science/logic/ltl2ba/default.nix
···
9
9
sha256 = "16z0gc7a9dkarwn0l6rvg5jdhw1q4qyn4501zlchy0zxqddz0sx6";
10
10
};
11
11
12
12
+
preConfigure = ''
13
13
+
substituteInPlace Makefile \
14
14
+
--replace "CC=gcc" ""
15
15
+
'';
16
16
+
12
17
installPhase = ''
13
18
mkdir -p $out/bin
14
19
mv ltl2ba $out/bin
···
18
23
description = "fast translation from LTL formulae to Buchi automata";
19
24
homepage = "http://www.lsv.ens-cachan.fr/~gastin/ltl2ba";
20
25
license = stdenv.lib.licenses.gpl2Plus;
21
21
-
platforms = stdenv.lib.platforms.linux;
26
26
+
platforms = stdenv.lib.platforms.darwin ++ stdenv.lib.platforms.linux;
22
27
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
23
28
};
24
29
}