linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / yaml-merge / default.nix
blob7c4ecc49df5dd673c4f95da7bddb89fd546e7fd5
1 { lib, stdenv, fetchFromGitHub, pythonPackages }:
3 stdenv.mkDerivation {
4   name= "yaml-merge-2016-02-16";
6   src = fetchFromGitHub {
7     owner = "abbradar";
8     repo = "yaml-merge";
9     rev = "4eef7b68632d79dec369b4eff5a8c63f995f81dc";
10     sha256 = "0mwda2shk43i6f22l379fcdchmb07fm7nf4i2ii7fk3ihkhb8dgp";
11   };
13   pythonPath = with pythonPackages; [ pyyaml ];
14   nativeBuildInputs = [ pythonPackages.wrapPython ];
16   installPhase = ''
17     install -Dm755 yaml-merge.py $out/bin/yaml-merge
18     wrapPythonPrograms
19   '';
21   meta = with lib; {
22     description = "Merge YAML data files";
23     homepage = "https://github.com/abbradar/yaml-merge";
24     license = licenses.bsd2;
25     platforms = platforms.unix;
26     maintainers = with maintainers; [ abbradar ];
27   };