Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / cyclonedds / default.nix
blob899249150b31cbeea39f2b7d8250724081a02e16
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 }:
7 stdenv.mkDerivation rec {
8   pname = "cyclonedds";
9   version = "0.10.4";
11   src = fetchFromGitHub {
12     owner = "eclipse-cyclonedds";
13     repo = "cyclonedds";
14     rev = version;
15     sha256 = "sha256-LSCfQPyd/QOsrnLNbKb0OlCvmHi/2aDDhi8VeXpYb1w=";
16   };
18   patches = [
19     ./0001-Use-full-path-in-pkgconfig.patch
20   ];
22   nativeBuildInputs = [ cmake ];
24   meta = with lib; {
25     description = "Eclipse Cyclone DDS project";
26     homepage = "https://cyclonedds.io/";
27     license = with licenses; [ epl20 ];
28     maintainers = with maintainers; [ bachp ];
29   };