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

This commit is contained in:
Philip Taron 2024-03-19 21:01:58 -07:00 committed by Valentin Gagarin
parent 6aa0a4712e
commit 2c49521491
1 changed files with 5 additions and 2 deletions

View File

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