mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
piping-server-rust: init at 0.9.1
This commit is contained in:
parent
2526c085bf
commit
090e4a21a5
24
pkgs/servers/piping-server-rust/default.nix
Normal file
24
pkgs/servers/piping-server-rust/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "piping-server-rust";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nwtgck";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "16jzl0nk14gzb5kvilr17f02b41ma7xwh8y0g42pm9sb7jdbcn7g";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-SDAxXYX51/4S7zRTdNZK9uSjKHKrAXpDJgRRDyu6qug=";
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -8449,6 +8449,8 @@ with pkgs;
|
||||
|
||||
pinnwand = callPackage ../servers/pinnwand { };
|
||||
|
||||
piping-server-rust = callPackage ../servers/piping-server-rust { };
|
||||
|
||||
pirate-get = callPackage ../tools/networking/pirate-get { };
|
||||
|
||||
pipr = callPackage ../applications/misc/pipr { };
|
||||
|
Loading…
Reference in New Issue
Block a user