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: 694cadc3c280
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cf07f8d15dcc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 17, 2021

  1. mcfly: 0.5.2 -> 0.5.3

    marsam committed Jan 17, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    angerman Moritz Angermann
    Copy the full SHA
    9483d11 View commit details

Commits on Jan 19, 2021

  1. Merge pull request #109668 from marsam/update-mcfly

    mcfly: 0.5.2 -> 0.5.3
    marsam authored Jan 19, 2021
    Copy the full SHA
    cf07f8d View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/mcfly/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/mcfly/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ lib, stdenv, rustPlatform, fetchFromGitHub }:
{ lib, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
pname = "mcfly";
version = "0.5.2";
version = "0.5.3";

src = fetchFromGitHub {
owner = "cantino";
repo = "mcfly";
rev = "v${version}";
sha256 = "0a2jff72l5my00pg9lhjdmnwkqfv4hmnl0a9cfbnzsqh39lbklqy";
sha256 = "1p51wdv47cyg6dmb81fm0d92x1kp7bwwpgax6vlh669nkddiwvmm";
};

postInstall = ''
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage rec {
install -Dm644 -t $out/share/mcfly mcfly.fish
'';

cargoSha256 = "1c8qjkpc8wi095zzmgd05721kdf1knh9la91l081mvwa3inwk6ax";
cargoSha256 = "0gcdgca8w8i978b067rwm5zrc81rxb704006k9pbcwizkq2281yy";

meta = with lib; {
homepage = "https://github.com/cantino/mcfly";