nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 18 lines 283 B view raw
1{ 2 lib, 3 buildDunePackage, 4 dune, 5}: 6 7buildDunePackage { 8 pname = "xdg"; 9 inherit (dune) src version; 10 11 dontAddPrefix = true; 12 13 meta = { 14 description = "XDG Base Directory Specification"; 15 inherit (dune.meta) homepage maintainers; 16 license = lib.licenses.mit; 17 }; 18}