nixpkgs/pkgs/by-name/du/dumbpipe/package.nix

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

35 lines
752 B
Nix
Raw Normal View History

2024-04-25 20:13:35 +00:00
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "dumbpipe";
2024-04-30 01:05:41 +00:00
version = "0.7.0";
2024-04-25 20:13:35 +00:00
src = fetchFromGitHub {
owner = "n0-computer";
repo = pname;
rev = "v${version}";
2024-04-30 01:05:41 +00:00
hash = "sha256-pvAB3kvnyNZ6N7bC8NIaSNUxcn9AfpEozYcczA+5zmc=";
2024-04-25 20:13:35 +00:00
};
2024-04-30 01:05:41 +00:00
cargoHash = "sha256-aHuRG1mLb18bra/iTddU3B4XjS5shheBqW1Hs+QMcJs=";
2024-04-25 20:13:35 +00:00
buildInputs = lib.optionals stdenv.isDarwin (
with darwin.apple_sdk.frameworks; [
SystemConfiguration
]
);
meta = with lib; {
description = "Connect A to B - Send Data";
homepage = "https://www.dumbpipe.dev/";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ cameronfyfe ];
mainProgram = "dumbpipe";
};
}