Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 88de0d7354f1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 145be2908586
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 9, 2020

  1. Copy the full SHA
    145be29 View commit details
Showing with 3 additions and 5 deletions.
  1. +3 −5 pkgs/tools/misc/miniserve/default.nix
8 changes: 3 additions & 5 deletions pkgs/tools/misc/miniserve/default.nix
Original file line number Diff line number Diff line change
@@ -8,18 +8,16 @@

rustPlatform.buildRustPackage rec {
pname = "miniserve";
version = "0.10.0";
version = "0.10.1";

src = fetchFromGitHub {
owner = "svenstaro";
repo = "miniserve";
rev = "v${version}";
sha256 = "01nsviw5nc5lb6z3j2yiymiwhiq719nwqpvqbyb5p65s98sph7yh";
sha256 = "0d3jfxlk6r52ikqlvrj34grj2anq6r8653icn1dsjcrnwam5vn39";
};

cargoSha256 = "098p4645air5402shqignc57zdm6755shahhby17nqv1s27gfinc";

RUSTC_BOOTSTRAP = 1;
cargoSha256 = "0zzfx7j36cxjx8vbcghg5icimda7lwm2qhlnvxcd67fws3ggmn5x";

nativeBuildInputs = [ pkg-config zlib ];
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];