uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
29
pkgs/tools/text/yaml-merge/default.nix
Normal file
29
pkgs/tools/text/yaml-merge/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue