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
69
pkgs/applications/science/programming/fdr/default.nix
Normal file
69
pkgs/applications/science/programming/fdr/default.nix
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
{ lib, stdenv, fetchurl, qtbase, qtx11extras, ncurses5, xorg, zlib, python27Packages }:
|
||||
stdenv.mkDerivation {
|
||||
pname = "fdr";
|
||||
version = "4.2.7";
|
||||
src = fetchurl {
|
||||
url = "https://dl.cocotec.io/fdr/fdr-3814-linux-x86_64.tar.gz";
|
||||
sha256 = "0cajz1gz4slq9nfhm8dqdgxl0kc950838n0lrf8jw4vl54gv6chh";
|
||||
};
|
||||
|
||||
libPath = lib.makeLibraryPath [
|
||||
stdenv.cc.cc
|
||||
python27Packages.python
|
||||
qtbase
|
||||
qtx11extras
|
||||
ncurses5
|
||||
xorg.libX11
|
||||
xorg.libXft
|
||||
zlib
|
||||
];
|
||||
|
||||
dontConfigure = true;
|
||||
installPhase = ''
|
||||
mkdir -p "$out"
|
||||
|
||||
# shipped Qt is buggy
|
||||
rm lib/libQt*
|
||||
rm -r lib/qt_plugins
|
||||
|
||||
cp -r * "$out"
|
||||
ln -s ${ncurses5.out}/lib/libtinfo.so.5 $out/lib/libtinfo.so.5
|
||||
ln -s ${qtbase.bin}/${qtbase.qtPluginPrefix} $out/lib/qt_plugins
|
||||
ln -s ${zlib.out}/lib/libz.so.1 $out/lib/libz.so.1
|
||||
|
||||
for b in fdr4 _fdr4 refines _refines cspmprofiler cspmexplorerprof
|
||||
do
|
||||
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
||||
--set-rpath "$libPath:$out/lib" \
|
||||
"$out/bin/$b"
|
||||
done
|
||||
|
||||
for l in corei7/librefines.so \
|
||||
libcspm_process_compiler.so \
|
||||
libcsp_operators.so \
|
||||
_fdr.so \
|
||||
libfdr.so \
|
||||
libfdr_java.so \
|
||||
libprocess_compiler.so \
|
||||
librefines_gui.so \
|
||||
librefines_licensing.so \
|
||||
libboost_date_time.so.1.60.0 \
|
||||
libboost_filesystem.so.1.60.0 \
|
||||
libboost_iostreams.so.1.60.0 \
|
||||
libboost_program_options.so.1.60.0 \
|
||||
libboost_serialization.so.1.60.0 \
|
||||
libboost_system.so.1.60.0
|
||||
do
|
||||
patchelf --set-rpath "$libPath:$out/lib" \
|
||||
"$out/lib/$l"
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://cocotec.io/fdr/";
|
||||
description = "The CSP refinement checker";
|
||||
license = licenses.unfreeRedistributable;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ nickhu ];
|
||||
};
|
||||
}
|
||||
55
pkgs/applications/science/programming/groove/default.nix
Normal file
55
pkgs/applications/science/programming/groove/default.nix
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
{ lib, stdenv, fetchurl, unzip, makeWrapper, makeDesktopItem, icoutils, jre8 }:
|
||||
|
||||
let
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "groove-simulator";
|
||||
exec = "groove-simulator";
|
||||
icon = "groove";
|
||||
desktopName = "GROOVE Simulator";
|
||||
comment = "GRaphs for Object-Oriented VErification";
|
||||
categories = [ "Science" "ComputerScience" ];
|
||||
};
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "groove";
|
||||
version = "5.8.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/groove/groove/${version}/${pname}-${builtins.replaceStrings ["."] ["_"] version}-bin.zip";
|
||||
sha256 = "sha256-JwoUlO6F2+8NtCnLC+xm5q0Jm8RIyU1rnuKGmjgJhFU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip makeWrapper icoutils ];
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/groove
|
||||
cp -r bin lib $out/share/groove/
|
||||
|
||||
mkdir -p $out/share/doc/groove
|
||||
cp CHANGES README *.pdf $out/share/doc/groove/
|
||||
|
||||
mkdir -p $out/bin
|
||||
for bin in Generator Imager ModelChecker PrologChecker Simulator Viewer; do
|
||||
makeWrapper ${jre8}/bin/java $out/bin/groove-''${bin,,} \
|
||||
--add-flags "-jar $out/share/groove/bin/$bin.jar"
|
||||
done
|
||||
|
||||
mkdir -p $out/share/applications
|
||||
ln -s ${desktopItem}/share/applications/* $out/share/applications/
|
||||
|
||||
mkdir -p $out/share/icons/hicolor/{16x16,32x32}/apps
|
||||
icotool -x -i 1 -o $out/share/icons/hicolor/32x32/apps/groove.png groove-green-g.ico
|
||||
icotool -x -i 2 -o $out/share/icons/hicolor/16x16/apps/groove.png groove-green-g.ico
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "GRaphs for Object-Oriented VErification";
|
||||
homepage = "http://groove.cs.utwente.nl/";
|
||||
license = licenses.asl20;
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ jfrankenau ];
|
||||
};
|
||||
}
|
||||
33
pkgs/applications/science/programming/jflap/default.nix
Normal file
33
pkgs/applications/science/programming/jflap/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchurl, jre, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jflap";
|
||||
version = "7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.jflap.org/jflaptmp/july27-18/JFLAP7.1.jar";
|
||||
sha256 = "oiwJXdxWsYFj6Ovu7xZbOgTLVw8160a5YQUWbgbJlAY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
dontUnpack = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/share/java
|
||||
cp -s $src $out/share/java/jflap.jar
|
||||
makeWrapper ${jre}/bin/java $out/bin/jflap --add-flags "-jar $out/share/java/jflap.jar"
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "GUI tool for experimenting with formal languages topics";
|
||||
homepage = "https://www.jflap.org/";
|
||||
license = licenses.unfree;
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
maintainers = [ maintainers.grnnja ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
40
pkgs/applications/science/programming/plm/default.nix
Normal file
40
pkgs/applications/science/programming/plm/default.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ lib, stdenv, fetchurl, makeWrapper, jre, gcc, valgrind }:
|
||||
# gcc and valgrind are not strict dependencies, they could be made
|
||||
# optional. They are here because plm can only help you learn C if you
|
||||
# have them installed.
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "plm";
|
||||
version = "2.9.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/BuggleInc/PLM/releases/download/v${version}/plm-${version}.jar";
|
||||
sha256 = "0i9ghx9pm3kpn9x9n1hl10zdr36v5mv3drx8lvhsqwhlsvz42p5i";
|
||||
name = "${pname}-${version}.jar";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ jre gcc valgrind ];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p "$prefix/bin"
|
||||
|
||||
makeWrapper ${jre}/bin/java $out/bin/plm \
|
||||
--add-flags "-jar $src" \
|
||||
--prefix PATH : "$PATH"
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Free cross-platform programming exerciser";
|
||||
homepage = "http://people.irisa.fr/Martin.Quinson/Teaching/PLM/";
|
||||
license = licenses.gpl3;
|
||||
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue