3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/text/diffr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
732 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, Security }:
rustPlatform.buildRustPackage rec {
pname = "diffr";
version = "0.1.4";
src = fetchFromGitHub {
owner = "mookid";
repo = pname;
rev = "v${version}";
2020-03-31 11:19:25 +01:00
sha256 = "18ks5g4bx6iz9hdjxmi6a41ncxpb1hnsscdlddp2gr40k3vgd0pa";
};
2022-03-04 00:55:11 +00:00
cargoSha256 = "0pn3vqv13n29h8069a38306vjlzlxf1m08ldv7lpzgqxhl8an00r";
2021-01-15 09:19:50 +00:00
buildInputs = (lib.optional stdenv.isDarwin Security);
2020-03-31 11:19:25 +01:00
preCheck = ''
export DIFFR_TESTS_BINARY_PATH=$releaseDir/diffr
'';
meta = with lib; {
description = "Yet another diff highlighting tool";
homepage = "https://github.com/mookid/diffr";
license = with licenses; [ mit ];
maintainers = with maintainers; [ davidtwco ];
};
}