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

Commits on Jul 23, 2020

  1. just: 0.6.0 -> 0.7.1

    dywedir committed Jul 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    dywedir Vlad M.
    Copy the full SHA
    4973d19 View commit details
  2. Merge pull request #93696 from dywedir/just

    just: 0.6.0 -> 0.7.1
    danieldk authored Jul 23, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2acbca9 View commit details
Showing with 4 additions and 13 deletions.
  1. +4 −13 pkgs/development/tools/just/default.nix
17 changes: 4 additions & 13 deletions pkgs/development/tools/just/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "just";
version = "0.6.0";
version = "0.7.1";

src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
sha256 = "1sl235wr4fdsw0f0x7jynv6ljhvgis4d87xzpvjzajhdaappdp8d";
sha256 = "07fjixz8y5rxfwpyr1kiimnn27jhc20gacd17i0yvfcpy5qf8z5p";
};

cargoSha256 = "0k3aqwvdm95403s279gkksklnikgyjpf5qvngsvsrm5xqda438jk";
cargoSha256 = "1zn0kiqi8p25lscjd661gczay631nwzadl36cfzqnbww6blayy1j";

nativeBuildInputs = [ installShellFiles ];

@@ -40,16 +40,7 @@ rustPlatform.buildRustPackage rec {

# Skip "edit" when running "cargo test",
# since this test case needs "cat".
checkPhase = ''
runHook preCheck
echo "Running cargo test --
--skip edit
''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
cargo test -- \
--skip edit \
''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
runHook postCheck
'';
checkFlagsArray = [ "--skip=edit" ];

meta = with stdenv.lib; {
description = "A handy way to save and run project-specific commands";