nixpkgs/pkgs/by-name/se/sendme/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
788 B
Nix
Raw Normal View History

2024-01-06 23:00:29 +00:00
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "sendme";
2024-10-02 03:52:26 +00:00
version = "0.17.0";
2024-01-06 23:00:29 +00:00
src = fetchFromGitHub {
owner = "n0-computer";
repo = pname;
rev = "v${version}";
2024-10-02 03:52:26 +00:00
hash = "sha256-YnabQ8YHDsFYu5RX3E2NvPARsl+qn4688q9KxZ5Fegc=";
2024-01-06 23:00:29 +00:00
};
2024-10-02 03:52:26 +00:00
cargoHash = "sha256-yD40QKceLjtq80K6I98bT27sCAkCnkRkfE3m4eGjueU=";
2024-01-06 23:00:29 +00:00
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (
2024-01-06 23:00:29 +00:00
with darwin.apple_sdk.frameworks; [
SystemConfiguration
]
);
meta = with lib; {
description = "Tool to send files and directories, based on iroh";
homepage = "https://iroh.computer/sendme";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ cameronfyfe ];
mainProgram = "sendme";
};
}