{ description = "InputXSLT"; inputs = { nixpkgs.url = github:NixOS/nixpkgs/nixos-21.05; }; outputs = { self, nixpkgs, ... }: { defaultPackage.x86_64-linux = let system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; }; in pkgs.stdenv.mkDerivation rec { name = "input-xslt"; src = pkgs.lib.cleanSource ./.; buildInputs = with pkgs; [ cmake boost xalanc xercesc discount ]; meta = { description = "InputXSLT"; homepage = https://tree.kummerlaender.eu/projects/xslt/input_xslt/; license = pkgs.lib.licenses.asl20; }; }; }; }