mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
diffedit3: init at 0.4.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
195613ace0
commit
5788c29ef0
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/di/diffedit3/package.nix
Normal file
30
pkgs/by-name/di/diffedit3/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib, rustPlatform, fetchCrate
|
||||
, testers, nix-update-script, diffedit3
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "diffedit3";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-qw5Wos2u/H6ccJ3qkrVOCisMFDTNwxp/YeOTE1x5lcU=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-e5bm8GLubA9BzH9oKKSC/Ysh+O+GJA8x6W576vKIIUA=";
|
||||
|
||||
passthru = {
|
||||
updateScript = nix-update-script { };
|
||||
tests = testers.testVersion {
|
||||
package = diffedit3;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ilyagr/diffedit3";
|
||||
description = "3-pane diff editor";
|
||||
license = with licenses; [ asl20 ];
|
||||
mainProgram = "diffedit3";
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue