2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchgit, darwin, buildPlatform
|
2020-04-17 22:09:47 +01:00
|
|
|
, buildRustCrate, buildRustCrateHelpers, defaultCrateOverrides }:
|
|
|
|
|
|
|
|
((import ./Cargo.nix {
|
|
|
|
inherit lib buildPlatform buildRustCrate buildRustCrateHelpers fetchgit;
|
|
|
|
cratesIO = import ./crates-io.nix { inherit lib buildRustCrate buildRustCrateHelpers; };
|
|
|
|
}).systemfd {}).override {
|
|
|
|
crateOverrides = defaultCrateOverrides // {
|
|
|
|
systemfd = attrs: {
|
|
|
|
meta = {
|
2020-10-11 06:55:05 +01:00
|
|
|
description = "A convenient helper for passing sockets into another process";
|
2020-04-17 22:09:47 +01:00
|
|
|
homepage = "https://github.com/mitsuhiko/systemfd";
|
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = [ lib.maintainers.adisbladis ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|