mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
23 lines
488 B
Nix
23 lines
488 B
Nix
{ lib, buildDunePackage, dune_3, dune-private-libs }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dune-site";
|
|
inherit (dune_3) src version;
|
|
|
|
duneVersion = "3";
|
|
|
|
dontAddPrefix = true;
|
|
|
|
propagatedBuildInputs = [ dune-private-libs ];
|
|
|
|
preBuild = ''
|
|
rm -r vendor/csexp
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Library for embedding location information inside executable and libraries";
|
|
inherit (dune_3.meta) homepage;
|
|
maintainers = [ ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|