mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
Avoid top-level with ...;
in pkgs/tools/backup/ugarit/default.nix
This commit is contained in:
parent
6aa0a4712e
commit
2c49521491
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user