Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
{
|
||||
description = "Nix-to-XML converter.";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-22.05";
|
||||
utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, utils }: {
|
||||
lib.toXML = import ./to-xml.nix { inherit (nixpkgs) lib; };
|
||||
overlay = final: prev: { lib = prev.lib // { toXML = self.lib.toXML; }; };
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user