uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
31
pkgs/applications/science/logic/mcrl2/default.nix
Normal file
31
pkgs/applications/science/logic/mcrl2/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{lib, stdenv, fetchurl, cmake, libGLU, libGL, qt5, boost}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "201707";
|
||||
build_nr = "1";
|
||||
pname = "mcrl2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.mcrl2.org/download/release/mcrl2-${version}.${build_nr}.tar.gz";
|
||||
sha256 = "1c8h94ja7271ph61zrcgnjgblxppld6v22f7f900prjgzbcfy14m";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ libGLU libGL qt5.qtbase boost ];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
description = "A toolset for model-checking concurrent systems and protocols";
|
||||
longDescription = ''
|
||||
A formal specification language with an associated toolset,
|
||||
that can be used for modelling, validation and verification of
|
||||
concurrent systems and protocols
|
||||
'';
|
||||
homepage = "https://www.mcrl2.org/";
|
||||
license = licenses.boost;
|
||||
maintainers = with maintainers; [ moretea ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue