My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/text/yaml-merge/default.nix

29 lines
790 B

{ lib, stdenv, fetchFromGitHub, python3Packages }:
stdenv.mkDerivation {
pname = "yaml-merge";
version = "unstable-2022-01-12";
src = fetchFromGitHub {
owner = "abbradar";
repo = "yaml-merge";
rev = "2f0174fe92fc283dd38063a3a14f7fe71db4d9ec";
sha256 = "sha256-S2eZw+FOZvOn0XupZDRNcolUPd4PhvU1ziu+kx2AwnY=";
};
pythonPath = with python3Packages; [ pyyaml ];
nativeBuildInputs = with python3Packages; [ wrapPython ];
installPhase = ''
install -Dm755 yaml-merge.py $out/bin/yaml-merge
wrapPythonPrograms
'';
meta = with lib; {
description = "Merge YAML data files";
homepage = "https://github.com/abbradar/yaml-merge";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ abbradar ];
};
}