tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
xed: 12.0.1 -> 2022.08.11
Artur Cygan
3 years ago
81abce47
a81b6401
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
xed
default.nix
+6
-6
pkgs/development/libraries/xed/default.nix
···
4
4
# mbuild is a custom build system used only to build xed
5
5
mbuild = python3Packages.buildPythonPackage rec {
6
6
pname = "mbuild";
7
7
-
version = "0.2496-dev";
7
7
+
version = "2022.07.28";
8
8
9
9
src = fetchFromGitHub {
10
10
owner = "intelxed";
11
11
repo = "mbuild";
12
12
-
rev = "3e8eb33aada4153c21c4261b35e5f51f6e2019e8";
13
13
-
sha256 = "0yamgzkzw4v6x1a857psw9f7i62ydgd0zaqrf33dbdg8hfd2mq3q";
12
12
+
rev = "v${version}";
13
13
+
sha256 = "sha256-eOAqmoPotdXGcBmrD9prXph4XOL6noJU6GYT/ud/VXk=";
14
14
};
15
15
};
16
16
17
17
in stdenv.mkDerivation rec {
18
18
pname = "xed";
19
19
-
version = "12.0.1";
19
19
+
version = "2022.08.11";
20
20
21
21
src = fetchFromGitHub {
22
22
owner = "intelxed";
23
23
repo = "xed";
24
24
-
rev = version;
25
25
-
sha256 = "07zfff8zf29c2n0wal87hiqfq3cwcjn80zz78mz0nyjfj09nd39f";
24
24
+
rev = "v${version}";
25
25
+
sha256 = "sha256-Iil+dfjuWYPbzmSjgwKTKScSE/IsWuHEKQ5HsBJDqWM=";
26
26
};
27
27
28
28
nativeBuildInputs = [ mbuild ];