Merge pull request #172940 from armeenm/bump-arc_unpacker

arc_unpacker: unstable-2021-05-17 -> unstable-2021-08-06

authored by Robert Scott and committed by GitHub 47552f9e 267e2320

+4 -6
+3 -6
pkgs/tools/archivers/arc_unpacker/default.nix
··· 3 4 stdenv.mkDerivation rec { 5 pname = "arc_unpacker"; 6 - version = "unstable-2021-05-17"; 7 8 src = fetchFromGitHub { 9 owner = "vn-tools"; 10 repo = "arc_unpacker"; 11 - # Since the latest release (0.11) doesn't build, we've opened an upstream 12 - # issue in https://github.com/vn-tools/arc_unpacker/issues/187 to ask if a 13 - # a new release is upcoming 14 - rev = "9c2781fcf3ead7641e873b65899f6abeeabb2fc8"; 15 - sha256 = "1xxrc9nww0rla3yh10z6glv05ax4rynwwbd0cdvkp7gyqzrv97xp"; 16 }; 17 18 nativeBuildInputs = [ cmake makeWrapper catch2 ];
··· 3 4 stdenv.mkDerivation rec { 5 pname = "arc_unpacker"; 6 + version = "unstable-2021-08-06"; 7 8 src = fetchFromGitHub { 9 owner = "vn-tools"; 10 repo = "arc_unpacker"; 11 + rev = "456834ecf2e5686813802c37efd829310485c57d"; 12 + hash = "sha256-STbdWH7Mr3gpOrZvujblYrIIKEWBHzy1/BaNuh4teI8="; 13 }; 14 15 nativeBuildInputs = [ cmake makeWrapper catch2 ];
+1
pkgs/top-level/all-packages.nix
··· 999 1000 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { 1001 boost = boost16x; # checkPhase fails with Boost 1.77 1002 }; 1003 1004 adminer = callPackage ../servers/adminer { };
··· 999 1000 arc_unpacker = callPackage ../tools/archivers/arc_unpacker { 1001 boost = boost16x; # checkPhase fails with Boost 1.77 1002 + stdenv = if stdenv.cc.isGNU then gcc10Stdenv else stdenv; 1003 }; 1004 1005 adminer = callPackage ../servers/adminer { };