about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/adslib/default.nix
blob: 49b54960b7e6856503fbe5dc759ecdf811af54d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 ];
  };
}