From af924bbaad1a84a8ccb3f8be2822ac02745ef02e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Sat, 13 Apr 2024 10:19:45 +0200 Subject: [PATCH] llef: unstable-2023-10-18 -> 1.1.0 --- .../compilers/llvm/common/lldb-plugins/llef.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix b/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix index f671132aa61e..c06aeb187105 100644 --- a/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix +++ b/pkgs/development/compilers/llvm/common/lldb-plugins/llef.nix @@ -5,15 +5,15 @@ , lldb }: -stdenv.mkDerivation { +stdenv.mkDerivation (finalAttrs: { pname = "llef"; - version = "unstable-2023-10-18"; + version = "1.1.0"; src = fetchFromGitHub { owner = "foundryzero"; repo = "llef"; - rev = "629bd75f44c356f7a3576a6436d3919ce111240d"; - hash = "sha256-JtCHG89s436Di/6+V7Le4CZnkIPh/RYIllfXEO/B7+8"; + rev = "v${finalAttrs.version}"; + hash = "sha256-tta99ncWJdnnSkVdnOwx36utEcefMy7fb5NDN2aZ5F0="; }; dontBuild = true; @@ -40,4 +40,4 @@ stdenv.mkDerivation { maintainers = with maintainers; [ nrabulinski ]; mainProgram = "llef"; }; -} +})