nur-packages

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

default.nix (871B)


      1 {
      2   lib,
      3   stdenv,
      4   rustPlatform,
      5   fetchFromGitHub,
      6   pkg-config,
      7   rtl-sdr,
      8   systemd,
      9 }:
     10 
     11 rustPlatform.buildRustPackage rec {
     12   pname = "rtltcp";
     13   version = "0.1.1";
     14 
     15   src = fetchFromGitHub {
     16     owner = "niclashoyer";
     17     repo = "rtltcp";
     18     tag = version;
     19     hash = "sha256-mGBU4O4RMTZPoxfg1zr2WeiZsfnIba6VHYX3FYTY+OY=";
     20   };
     21 
     22   cargoPatches = [ ./cargo-lock.patch ];
     23   useFetchCargoVendor = true;
     24   cargoHash = "sha256-Zvf/cglQ4SmeMru9rMYBSkbT0Rx91vLrLOO0VCwHcwk=";
     25 
     26   nativeBuildInputs = [ pkg-config ];
     27 
     28   buildInputs = [
     29     rtl-sdr
     30     systemd
     31   ];
     32 
     33   meta = {
     34     description = "A rust implementation of rtl-tcp";
     35     homepage = "https://github.com/niclashoyer/rtltcp";
     36     license = with lib.licenses; [
     37       asl20
     38       mit
     39     ];
     40     maintainers = [ lib.maintainers.sikmir ];
     41     platforms = lib.platforms.linux;
     42     skip.ci = stdenv.isDarwin;
     43   };
     44 }