mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
16 lines
296 B
Nix
16 lines
296 B
Nix
|
{ buildDunePackage, irmin, fmt, ptime, mirage-clock }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "irmin-mirage";
|
||
|
|
||
|
inherit (irmin) version src useDune2;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
irmin fmt ptime mirage-clock
|
||
|
];
|
||
|
|
||
|
meta = irmin.meta // {
|
||
|
description = "MirageOS-compatible Irmin stores";
|
||
|
};
|
||
|
}
|