nur-packages

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

default.nix (797B)


      1 {
      2   lib,
      3   stdenv,
      4   rustPlatform,
      5   fetchFromGitHub,
      6   fuse3,
      7   macfuse-stubs,
      8   pkg-config,
      9 }:
     10 
     11 let
     12   fuse = if stdenv.isDarwin then macfuse-stubs else fuse3;
     13 in
     14 rustPlatform.buildRustPackage rec {
     15   pname = "ffs";
     16   version = "0.1.2";
     17 
     18   src = fetchFromGitHub {
     19     owner = "mgree";
     20     repo = "ffs";
     21     tag = "v${version}";
     22     hash = "sha256-7hYH+utmAoWtV2xZLvSnE8779qKvzIJVJt9mNwH82sY=";
     23   };
     24 
     25   useFetchCargoVendor = true;
     26   cargoHash = "sha256-EcUXWTGQBOkrBzlL/DMQvcUP/NVPvOsyM5qm+SEDc6s=";
     27 
     28   nativeBuildInputs = [ pkg-config ];
     29 
     30   buildInputs = [ fuse ];
     31 
     32   doCheck = false;
     33 
     34   meta = {
     35     description = "the file filesystem";
     36     homepage = "https://github.com/mgree/ffs";
     37     license = lib.licenses.gpl3;
     38     maintainers = [ lib.maintainers.sikmir ];
     39     mainProgram = "ffs";
     40   };
     41 }