f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
619 B
Nix
21 lines
619 B
Nix
{ stdenv, fetchurl, ocaml, ocamlPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cubicle-${version}";
|
|
version = "1.0.2";
|
|
src = fetchurl {
|
|
url = "http://cubicle.lri.fr/cubicle-${version}.tar.gz";
|
|
sha256 = "1fg39vlr2d5067512df32hkw6g8vglxj1m47md5mw3pn3ij6dpsx";
|
|
};
|
|
|
|
buildInputs = [ ocaml ocamlPackages.functory ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An open source model checker for verifying safety properties of array-based systems";
|
|
homepage = http://cubicle.lri.fr/;
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lucas8 ];
|
|
};
|
|
}
|