10 stdenv.mkDerivation rec {
11 pname = "yaml-filter";
14 src = fetchFromGitHub {
18 hash = "sha256-HDHjOapMFjuDcWW5+opKD2tllbwz4YBw/EI4W7Wf/6g=";
26 buildInputs = [ libyaml ];
29 description = "YAML document filtering for libyaml";
30 homepage = "https://github.com/OpenSCAP/yaml-filter";
31 license = lib.licenses.mit;
32 maintainers = with lib.maintainers; [ tochiaha ];
33 mainProgram = "yamlp";
34 platforms = lib.platforms.all;