adslib: init at unstable-2020-08-28
This commit is contained in:
parent
0e60d79f2a
commit
1c44f88e11
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in New Issue