mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #83866 from davidtwco/diffr-0.1.4
diffr: 0.1.2 -> 0.1.4
This commit is contained in:
commit
61666e0b18
1 changed files with 7 additions and 7 deletions
|
@ -2,23 +2,23 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "diffr";
|
||||
version = "v0.1.2";
|
||||
|
||||
# diffr's tests expect the diffr binary to be at `$CARGO_MANIFEST_DIR/target/debug/diffr`.
|
||||
doCheck = false;
|
||||
version = "v0.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mookid";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1fpcyl4kc4djfl6a2jlj56xqra42334vygz8n7614zgjpyxz3zx2";
|
||||
sha256 = "18ks5g4bx6iz9hdjxmi6a41ncxpb1hnsscdlddp2gr40k3vgd0pa";
|
||||
};
|
||||
|
||||
cargoSha256 = "17xgjk8li29b8q8p2bi56klqg0v2q0j6ich438c4p06jrszccx1f";
|
||||
cargoSha256 = "09yn02985yv40n9y0ipz0jmj7iqhz7l8hd3ry9ib3fyw9pyklnfa";
|
||||
|
||||
nativeBuildInputs = [];
|
||||
buildInputs = (stdenv.lib.optional stdenv.isDarwin Security);
|
||||
|
||||
preCheck = ''
|
||||
export DIFFR_TESTS_BINARY_PATH=$releaseDir/diffr
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Yet another diff highlighting tool";
|
||||
homepage = https://github.com/mookid/diffr;
|
||||
|
|
Loading…
Reference in a new issue