diff options
author | Franck Cuny <franck@fcuny.net> | 2024-12-18 09:11:55 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-12-18 09:11:55 -0800 |
commit | 03b8e884f92986ac78e47f9f48b80f8b29db553c (patch) | |
tree | 810709eda5ef1de709dd1362dd263a6890beffea /packages/hashi | |
parent | add overlay for the hashi tool (diff) | |
download | world-03b8e884f92986ac78e47f9f48b80f8b29db553c.tar.gz |
remove unnecessary trace
Diffstat (limited to 'packages/hashi')
-rw-r--r-- | packages/hashi/default.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/hashi/default.nix b/packages/hashi/default.nix index 54f71d1..cadabb4 100644 --- a/packages/hashi/default.nix +++ b/packages/hashi/default.nix @@ -6,7 +6,7 @@ in stdenv.mkDerivation rec { pname = "hashi"; version = "0.1.4"; - src = builtins.trace "Attempting to fetch: ${url}" fetchurl { + src = fetchurl { inherit url; sha256 = "sha256-uX6AdOUfh6JEwS20kQwjp9Os12lVOGoCajOV9sYWXtA="; }; @@ -32,4 +32,3 @@ stdenv.mkDerivation rec { platforms = [ "x86_64-darwin" ]; }; } - |