3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #106782 from EdenEast/up/just

just: 0.7.1 -> 0.8.3
This commit is contained in:
Mario Rodas 2020-12-12 19:38:11 -05:00 committed by GitHub
commit 9452323207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,16 +2,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "just"; pname = "just";
version = "0.7.1"; version = "0.8.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "casey"; owner = "casey";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "07fjixz8y5rxfwpyr1kiimnn27jhc20gacd17i0yvfcpy5qf8z5p"; sha256 = "4B72VYQ+HBvhGQNl577DuZpvWNIvv/6fejRQtVKtFKY=";
}; };
cargoSha256 = "1zn0kiqi8p25lscjd661gczay631nwzadl36cfzqnbww6blayy1j"; cargoSha256 = "uOOpDRWPSoH49NTu82rDxxDR/2icoe4ECxVQb/J/45w=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
@ -38,9 +38,9 @@ rustPlatform.buildRustPackage rec {
-e "s@#!/usr/bin/env bash@#!${bash}/bin/sh@g" -e "s@#!/usr/bin/env bash@#!${bash}/bin/sh@g"
''; '';
# Skip "edit" when running "cargo test", # Skip "edit" when running "cargo test", since this test case needs "cat".
# since this test case needs "cat". # Skip "choose" when running "cargo test", since this test case needs "fzf".
checkFlagsArray = [ "--skip=edit" ]; checkFlags = [ "--skip=choose" "--skip=edit" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A handy way to save and run project-specific commands"; description = "A handy way to save and run project-specific commands";