From 81abce479c5ae1d4c3bdfd3be2a831e3d23b7d59 Mon Sep 17 00:00:00 2001 From: Artur Cygan Date: Tue, 13 Sep 2022 11:39:14 +0200 Subject: [PATCH] xed: 12.0.1 -> 2022.08.11 --- pkgs/development/libraries/xed/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/xed/default.nix b/pkgs/development/libraries/xed/default.nix index 18e5b27d9b88..dc6495d0cf38 100644 --- a/pkgs/development/libraries/xed/default.nix +++ b/pkgs/development/libraries/xed/default.nix @@ -4,25 +4,25 @@ let # mbuild is a custom build system used only to build xed mbuild = python3Packages.buildPythonPackage rec { pname = "mbuild"; - version = "0.2496-dev"; + version = "2022.07.28"; src = fetchFromGitHub { owner = "intelxed"; repo = "mbuild"; - rev = "3e8eb33aada4153c21c4261b35e5f51f6e2019e8"; - sha256 = "0yamgzkzw4v6x1a857psw9f7i62ydgd0zaqrf33dbdg8hfd2mq3q"; + rev = "v${version}"; + sha256 = "sha256-eOAqmoPotdXGcBmrD9prXph4XOL6noJU6GYT/ud/VXk="; }; }; in stdenv.mkDerivation rec { pname = "xed"; - version = "12.0.1"; + version = "2022.08.11"; src = fetchFromGitHub { owner = "intelxed"; repo = "xed"; - rev = version; - sha256 = "07zfff8zf29c2n0wal87hiqfq3cwcjn80zz78mz0nyjfj09nd39f"; + rev = "v${version}"; + sha256 = "sha256-Iil+dfjuWYPbzmSjgwKTKScSE/IsWuHEKQ5HsBJDqWM="; }; nativeBuildInputs = [ mbuild ];