summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-11-29 08:14:54 -0500
committerGitHub <noreply@github.com>2021-11-29 08:14:54 -0500
commita0e70ea39cb5690a2cc61704da641518d07af4ff (patch)
tree4fa385bc11f29b1f46daab486559cafd0e08c078 /pkgs/servers
parentf366af7a1b3891d9370091ab03150d3a6ee138fa (diff)
parentef8eb89693a979c6dac738ea26141107408832f6 (diff)
downloadnixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar.gz
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar.bz2
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar.lz
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar.xz
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.tar.zst
nixpkgs-a0e70ea39cb5690a2cc61704da641518d07af4ff.zip
Merge pull request #147746 from figsoda/update-piping-server-rust
piping-server-rust: 0.9.1 -> 0.10.1
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/piping-server-rust/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/piping-server-rust/default.nix b/pkgs/servers/piping-server-rust/default.nix
index 10434c34807..4f231137bf5 100644
--- a/pkgs/servers/piping-server-rust/default.nix
+++ b/pkgs/servers/piping-server-rust/default.nix
@@ -1,19 +1,19 @@
-{ lib, rustPlatform, fetchFromGitHub, stdenv, Security }:
+{ lib, rustPlatform, fetchFromGitHub, stdenv, CoreServices, Security }:
 
 rustPlatform.buildRustPackage rec {
   pname = "piping-server-rust";
-  version = "0.9.1";
+  version = "0.10.1";
 
   src = fetchFromGitHub {
     owner = "nwtgck";
     repo = pname;
     rev = "v${version}";
-    sha256 = "16jzl0nk14gzb5kvilr17f02b41ma7xwh8y0g42pm9sb7jdbcn7g";
+    sha256 = "sha256-7L5YNpQXJQoB/VR/x1HtPfB0F/K0IWcJUb4/wE39Zp0=";
   };
 
-  cargoSha256 = "sha256-SDAxXYX51/4S7zRTdNZK9uSjKHKrAXpDJgRRDyu6qug=";
+  cargoSha256 = "sha256-t7TJx12CBauWW+1EZ80ouDO4p+0R5jLMaGc/YaPnYRc=";
 
-  buildInputs = lib.optional stdenv.isDarwin Security;
+  buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security ];
 
   meta = with lib; {
     description = "Infinitely transfer between every device over pure HTTP with pipes or browsers";