mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
19 lines
357 B
Nix
19 lines
357 B
Nix
{ lib, buildDunePackage, dune_3 }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "xdg";
|
|
inherit (dune_3) src version;
|
|
|
|
duneVersion = "3";
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
meta = with lib; {
|
|
description = "XDG Base Directory Specification";
|
|
inherit (dune_3.meta) homepage;
|
|
maintainers = [ ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|