nixpkgs/pkgs/servers/piping-server-rust/default.nix

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

27 lines
872 B
Nix
Raw Normal View History

2021-11-28 18:18:40 +00:00
{ lib, rustPlatform, fetchFromGitHub, stdenv, CoreServices, Security }:
2021-10-22 16:57:59 +00:00
rustPlatform.buildRustPackage rec {
pname = "piping-server-rust";
2022-03-13 18:34:15 +00:00
version = "0.12.1";
2021-10-22 16:57:59 +00:00
src = fetchFromGitHub {
owner = "nwtgck";
repo = pname;
rev = "v${version}";
2022-03-13 18:34:15 +00:00
sha256 = "sha256-L15ofIM5a/qoJHGXmkuTsmQLLmERG/PxAJ4+z1nn7w4=";
2021-10-22 16:57:59 +00:00
};
2022-03-13 18:34:15 +00:00
cargoSha256 = "sha256-CcIM7T7P4LbPxPK1ZqoJRP0IsLMEwMZg9DcuRu0aJHM=";
2021-10-22 16:57:59 +00:00
2021-11-28 18:18:40 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security ];
2021-10-30 16:52:23 +00:00
2021-10-22 16:57:59 +00:00
meta = with lib; {
description = "Infinitely transfer between every device over pure HTTP with pipes or browsers";
homepage = "https://github.com/nwtgck/piping-server-rust";
changelog = "https://github.com/nwtgck/piping-server-rust/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "piping-server";
};
}