adslib: init at unstable-2020-08-28

This commit is contained in:
Jamie Magee 2020-10-03 16:10:32 +02:00
parent 0e60d79f2a
commit 1c44f88e11
No known key found for this signature in database
GPG Key ID: 4429B642B1718654
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "adslib";
version = "unstable-2020-08-28";
src = fetchFromGitHub {
owner = "stlehmann";
repo = "ADS";
rev = "c457b60d61d73325837ca50be2cc997c4792d481";
sha256 = "11r86xa8fr4z957hd0abn8x7182nz30a198d02y7gzpbhpi3z43k";
};
installPhase = ''
mkdir -p $out/lib
cp adslib.so $out/lib/adslib.so
'';
meta = with lib; {
description = "Beckhoff protocol to communicate with TwinCAT devices";
homepage = "https://github.com/stlehmann/ADS";
license = licenses.mit;
maintainers = with maintainers; [ jamiemagee ];
};
}

View File

@ -11830,6 +11830,8 @@ in
adns = callPackage ../development/libraries/adns { };
adslib = callPackage ../development/libraries/adslib { };
afflib = callPackage ../development/libraries/afflib { };
aften = callPackage ../development/libraries/aften { };