ocamlPackages.magic: 0.7.3 -> 0.7.4, remove myself from maintainer
[NixPkgs.git] / pkgs / by-name / ad / adslib / package.nix
blob4b3baa6c80015e716847068147ea8e615cbe0ce5
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "adslib";
9   version = "unstable-2020-08-28";
11   src = fetchFromGitHub {
12     owner = "stlehmann";
13     repo = "ADS";
14     rev = "c457b60d61d73325837ca50be2cc997c4792d481";
15     sha256 = "11r86xa8fr4z957hd0abn8x7182nz30a198d02y7gzpbhpi3z43k";
16   };
18   installPhase = ''
19     mkdir -p $out/lib
20     cp adslib.so $out/lib/adslib.so
21   '';
23   meta = with lib; {
24     description = "Beckhoff protocol to communicate with TwinCAT devices";
25     homepage = "https://github.com/stlehmann/ADS";
26     license = licenses.mit;
27     maintainers = with maintainers; [ jamiemagee ];
28   };