mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
16 lines
291 B
Nix
16 lines
291 B
Nix
{ buildDunePackage, trace, mtime }:
|
|
|
|
buildDunePackage {
|
|
pname = "trace-tef";
|
|
inherit (trace) src version;
|
|
|
|
propagatedBuildInputs = [ mtime trace ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = trace.meta // {
|
|
description = "A simple backend for trace, emitting Catapult JSON into a file";
|
|
};
|
|
|
|
}
|