mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
17 lines
319 B
Nix
17 lines
319 B
Nix
{ buildDunePackage, irmin, fmt, ptime, mirage-clock }:
|
|
|
|
buildDunePackage {
|
|
pname = "irmin-mirage";
|
|
|
|
inherit (irmin) version src strictDeps;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
irmin fmt ptime mirage-clock
|
|
];
|
|
|
|
meta = irmin.meta // {
|
|
description = "MirageOS-compatible Irmin stores";
|
|
};
|
|
}
|