tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
acme: unstable-2021-02-14 -> unstable-2021-11-05
OPNA2608
3 years ago
8e45ee9e
f73cc9cb
+7
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
acme
default.nix
+7
-5
pkgs/development/compilers/acme/default.nix
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "acme";
5
5
-
version = "unstable-2021-02-14";
5
5
+
version = "unstable-2021-11-05";
6
6
7
7
src = fetchsvn {
8
8
url = "svn://svn.code.sf.net/p/acme-crossass/code-0/trunk";
9
9
-
rev = "319";
10
10
-
sha256 = "sha256-VifIQ+UEVMKJ+cNS+Xxusazinr5Cgu1lmGuhqj/5Mpk=";
9
9
+
rev = "323";
10
10
+
sha256 = "1dzvip90yf1wg0fhfghn96dwrhg289d06b624px9a2wwy3vp5ryg";
11
11
};
12
12
13
13
sourceRoot = "code-0-r${src.rev}/src";
14
14
15
15
-
makeFlags = [ "BINDIR=$(out)/bin" ];
16
16
-
17
15
postPatch = ''
18
16
substituteInPlace Makefile \
19
17
--replace "= gcc" "?= gcc"
20
18
'';
19
19
+
20
20
+
enableParallelBuilding = true;
21
21
+
22
22
+
makeFlags = [ "BINDIR=$(out)/bin" ];
21
23
22
24
meta = with lib; {
23
25
description = "A multi-platform cross assembler for 6502/6510/65816 CPUs";