industrializer: 0.2.6 -> 0.2.7

Main change is the fix for -fno-common toolchains.

Without the update build fails on upstream gcc-10 as:

    ld: jack.o:src/jack.h:26: multiple definition of `driver_jack';
        main.o:src/jack.h:26: first defined here
This commit is contained in:
Sergei Trofimovich 2022-06-05 19:54:57 +01:00
parent 49c4223e98
commit 9440e44a33

View file

@ -14,10 +14,10 @@
stdenv.mkDerivation rec {
pname = "industrializer";
version = "0.2.6";
version = "0.2.7";
src = fetchurl {
url = "mirror://sourceforge/project/${pname}/ps${pname}-${version}.tar.bz2";
sha256 = "0vls94hqpkk8h17da6fddgqbl5dgm6250av3raimhhzwvm5r1gfi";
url = "mirror://sourceforge/project/${pname}/ps${pname}-${version}.tar.xz";
sha256 = "0k688k2wppam351by7cp9m7an09yligzd89padr8viqy63gkdk6v";
};
nativeBuildInputs = [ pkg-config autoconf automake ];