nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (822B)


      1 {
      2   lib,
      3   rustPlatform,
      4   fetchFromGitHub,
      5   pkg-config,
      6   openssl,
      7 }:
      8 
      9 rustPlatform.buildRustPackage rec {
     10   pname = "opcua";
     11   version = "0.12.0-unstable-2024-10-09";
     12 
     13   src = fetchFromGitHub {
     14     owner = "locka99";
     15     repo = "opcua";
     16     rev = "fcc89d8f8b93b5a0943ec8086706e883900faa3c";
     17     hash = "sha256-0rwpAVynm0EfE4Wvq37P9O/om+zjNpi7G8iETCfZX6A=";
     18   };
     19 
     20   useFetchCargoVendor = true;
     21   cargoHash = "sha256-cjHr5OqDC25+4Y1qd89csHA4bjfVCPsfIQglQ3Dx/Yg=";
     22 
     23   nativeBuildInputs = [ pkg-config ];
     24 
     25   buildInputs = [ openssl ];
     26 
     27   __darwinAllowLocalNetworking = true;
     28 
     29   meta = {
     30     description = "Client and server implementation of the OPC UA specification written in Rust";
     31     homepage = "https://github.com/locka99/opcua";
     32     license = lib.licenses.mpl20;
     33     maintainers = [ lib.maintainers.sikmir ];
     34   };
     35 }