mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
17 lines
302 B
Nix
17 lines
302 B
Nix
|
{ lib, buildDunePackage, dune_3, dyn, ordering }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "stdune";
|
||
|
inherit (dune_3) version src;
|
||
|
duneVersion = "3";
|
||
|
|
||
|
dontAddPrefix = true;
|
||
|
|
||
|
propagatedBuildInputs = [ dyn ordering ];
|
||
|
|
||
|
meta = dune_3.meta // {
|
||
|
description = "Dune's unstable standard library";
|
||
|
};
|
||
|
}
|
||
|
|