Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 18 lines 379 B view raw
1{ lib, buildDunePackage, dune_3 }: 2 3buildDunePackage rec { 4 pname = "xdg"; 5 inherit (dune_3) src version; 6 7 duneVersion = "3"; 8 minimalOCamlVersion = "4.08"; 9 10 dontAddPrefix = true; 11 12 meta = with lib; { 13 description = "XDG Base Directory Specification"; 14 inherit (dune_3.meta) homepage; 15 maintainers = with lib.maintainers; [ ]; 16 license = licenses.mit; 17 }; 18}