snap7: init at 1.4.2
This commit is contained in:
parent
28224516e5
commit
0e0ad1a7a2
38
pkgs/development/libraries/snap7/default.nix
Normal file
38
pkgs/development/libraries/snap7/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, fetchzip, p7zip }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "snap7";
|
||||||
|
version = "1.4.2";
|
||||||
|
|
||||||
|
src = fetchzip {
|
||||||
|
url = "mirror://sourceforge/snap7/${version}/snap7-full-${version}.7z";
|
||||||
|
sha256 = "1n5gs8bwb6g9vfllf3x12r5yzqzapmlq1bmc6hl854b8vkg30y8c";
|
||||||
|
postFetch = ''
|
||||||
|
${p7zip}/bin/7z x $downloadedFile
|
||||||
|
mkdir $out
|
||||||
|
cp -r snap7-full-${version}/* $out/
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "dev" "doc" ];
|
||||||
|
|
||||||
|
makefile = "x86_64_linux.mk";
|
||||||
|
makeFlags = [ "LibInstall=$(out)/lib" ];
|
||||||
|
|
||||||
|
preBuild = "cd build/unix";
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p $out/lib
|
||||||
|
mkdir -p $dev/include
|
||||||
|
mkdir -p $doc/share
|
||||||
|
cp $src/examples/cpp/snap7.h $dev/include
|
||||||
|
cp -r $src/doc $doc/share/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "http://snap7.sourceforge.net/";
|
||||||
|
description = "Step7 Open Source Ethernet Communication Suite";
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
maintainers = with maintainers; [ freezeboy ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -18817,6 +18817,8 @@ in
|
|||||||
|
|
||||||
sierra-gtk-theme = callPackage ../data/themes/sierra { };
|
sierra-gtk-theme = callPackage ../data/themes/sierra { };
|
||||||
|
|
||||||
|
snap7 = callPackage ../development/libraries/snap7 {};
|
||||||
|
|
||||||
snowblind = callPackage ../data/themes/snowblind { };
|
snowblind = callPackage ../data/themes/snowblind { };
|
||||||
|
|
||||||
solarc-gtk-theme = callPackage ../data/themes/solarc { };
|
solarc-gtk-theme = callPackage ../data/themes/solarc { };
|
||||||
|
Loading…
Reference in New Issue
Block a user