Avoid top-level `with ...;` in pkgs/tools/backup/ugarit-manifest-maker/default.nix

This commit is contained in:
Philip Taron 2024-03-19 21:02:50 -07:00 committed by Valentin Gagarin
parent 623a58e4c9
commit 28164c6434
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
{ pkgs, lib, eggDerivation, fetchegg }:
let
eggs = import ./eggs.nix { inherit eggDerivation fetchegg; };
in with pkgs; eggDerivation rec {
in
eggDerivation rec {
pname = "ugarit-manifest-maker";
version = "0.1";
name = "${pname}-${version}";