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: ea84f9d409d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 16aa38f9f24e
Choose a head ref
  • 3 commits
  • 1 file changed
  • 3 contributors

Commits on Nov 26, 2020

  1. microserver: 0.1.8 -> 0.2.0

    r-ryantm committed Nov 26, 2020
    Copy the full SHA
    7a95b9b View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ffb8c1c View commit details
  3. Merge pull request #105022 from r-ryantm/auto-update/microserver

    microserver: 0.1.8 -> 0.2.0
    ryantm authored Nov 26, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    16aa38f View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/servers/microserver/default.nix
10 changes: 6 additions & 4 deletions pkgs/servers/microserver/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
{ stdenv, fetchFromGitHub, rustPlatform }:
{ stdenv, fetchFromGitHub, rustPlatform, darwin }:

rustPlatform.buildRustPackage rec {
pname = "microserver";
version = "0.1.8";
version = "0.2.0";

src = fetchFromGitHub {
owner = "robertohuertasm";
repo = "microserver";
rev = "v${version}";
sha256 = "1i9689ra5jnmhkxabrx4zcp5f422w9ql9m4xzldqwmpnckm736v6";
sha256 = "1bbbdajh74wh2fbidasim2mzmzqjrgi02v8b0g7vbhpdnlim6ixz";
};

cargoSha256 = "1yn3xmmhpixiviayicl2szlzfjx5crffp3pq75d5nz6ky3miai9l";
cargoSha256 = "0cyxa200iz7knkma4zi3mzky3g0kibbxd5303psk2rl2rppir0f7";

buildInputs = stdenv.lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]);

meta = with stdenv.lib; {
homepage = "https://github.com/robertohuertasm/microserver";