ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / sy / systemfd / package.nix
blobda562f2bd5496d876cf42b19f8f9435048dc559f
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 let
7   version = "0.4.4";
9 in
10 rustPlatform.buildRustPackage {
12   pname = "systemfd";
13   inherit version;
15   src = fetchFromGitHub {
16     repo = "systemfd";
17     owner = "mitsuhiko";
18     rev = version;
19     sha256 = "sha256-U+pBKuoMhyIOhLl1nzmxk5yFt9nOq/KZ6rx9JhalLmM=";
20   };
22   cargoHash = "sha256-k8FgdNVjFYO/lflVzRQUwHvdy4+eCNTnTYImdfy1GaQ=";
24   meta = {
25     description = "Convenient helper for passing sockets into another process";
26     mainProgram = "systemfd";
27     homepage = "https://github.com/mitsuhiko/systemfd";
28     license = lib.licenses.asl20;
29     maintainers = [ ];
30     platforms = lib.platforms.unix;
31   };