nur-packages

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

default.nix (793B)


      1 {
      2   lib,
      3   stdenv,
      4   rustPlatform,
      5   fetchFromGitHub,
      6   cmake,
      7   darwin,
      8 }:
      9 
     10 rustPlatform.buildRustPackage rec {
     11   pname = "rumqtt";
     12   version = "0.19.0";
     13 
     14   src = fetchFromGitHub {
     15     owner = "bytebeamio";
     16     repo = "rumqtt";
     17     tag = "rumqttd-${version}";
     18     hash = "sha256-3rDnJ1VsyGBDhjOq0Rd55WI1EbIo+17tcFZCoeJB3Kc=";
     19   };
     20 
     21   cargoPatches = [ ./cargo-lock.patch ];
     22   useFetchCargoVendor = true;
     23   cargoHash = "sha256-/OUSTfpjqTily2b2RNZEfmHdKHSQo7lQsGwqW08vPnc=";
     24 
     25   nativeBuildInputs = [ cmake ];
     26 
     27   buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
     28 
     29   meta = {
     30     description = "The MQTT ecosystem in rust";
     31     homepage = "https://github.com/bytebeamio/rumqtt";
     32     license = lib.licenses.asl20;
     33     maintainers = [ lib.maintainers.sikmir ];
     34   };
     35 }