dyff: init at 1.4.3 (#134772)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Co-authored-by: Jan Christoph Ebersbach <jan-christoph.ebersbach@identinet.io>
This commit is contained in:
parent
5e6aaaf238
commit
273251e593
3 changed files with 44 additions and 0 deletions
|
@ -3119,6 +3119,12 @@
|
||||||
githubId = 50854;
|
githubId = 50854;
|
||||||
name = "edef";
|
name = "edef";
|
||||||
};
|
};
|
||||||
|
edlimerkaj = {
|
||||||
|
name = "Edli Merkaj";
|
||||||
|
email = "edli.merkaj@identinet.io";
|
||||||
|
github = "edlimerkaj";
|
||||||
|
githubId = 71988351;
|
||||||
|
};
|
||||||
edibopp = {
|
edibopp = {
|
||||||
email = "eduard.bopp@aepsil0n.de";
|
email = "eduard.bopp@aepsil0n.de";
|
||||||
github = "edibopp";
|
github = "edibopp";
|
||||||
|
|
36
pkgs/development/tools/dyff/default.nix
Normal file
36
pkgs/development/tools/dyff/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "dyff";
|
||||||
|
version = "1.4.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "homeport";
|
||||||
|
repo = "dyff";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0r1nfwglyw8b46n17bpmgscfmjhjsbk83lgkpm63ysy0h5r84dq8";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "12mirnw229x5jkzda0c45vnjnv7fjvzf0rm3fcy5f3wza6hkx6q7";
|
||||||
|
|
||||||
|
subPackages = [
|
||||||
|
"cmd/dyff"
|
||||||
|
"pkg/dyff"
|
||||||
|
"internal/cmd"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A diff tool for YAML files, and sometimes JSON";
|
||||||
|
longDescription = ''
|
||||||
|
dyff is inspired by the way the old BOSH v1 deployment output reported
|
||||||
|
changes from one version to another by only showing the parts of a YAML
|
||||||
|
file that change.
|
||||||
|
|
||||||
|
Each difference is referenced by its location in the YAML document by
|
||||||
|
using either the Spruce or go-patch path syntax.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/homeport/dyff";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ edlimerkaj ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -24095,6 +24095,8 @@ with pkgs;
|
||||||
inherit (gnome2) libgnomeui;
|
inherit (gnome2) libgnomeui;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dyff = callPackage ../development/tools/dyff {};
|
||||||
|
|
||||||
dwl = callPackage ../applications/window-managers/dwl { };
|
dwl = callPackage ../applications/window-managers/dwl { };
|
||||||
|
|
||||||
dwm = callPackage ../applications/window-managers/dwm {
|
dwm = callPackage ../applications/window-managers/dwm {
|
||||||
|
|
Loading…
Reference in a new issue