sc-im: 0.8.1 -> 0.8.2

https://github.com/andmarti1424/sc-im/releases/tag/v0.8.2

+2 -15
+2 -15
pkgs/applications/misc/sc-im/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , makeWrapper 6 5 , pkg-config 7 6 , which ··· 16 15 17 16 stdenv.mkDerivation rec { 18 17 pname = "sc-im"; 19 - version = "0.8.1"; 18 + version = "0.8.2"; 20 19 21 20 src = fetchFromGitHub { 22 21 owner = "andmarti1424"; 23 22 repo = "sc-im"; 24 23 rev = "v${version}"; 25 - sha256 = "sha256-AIYa3d1ml1f5GNLKijeFPX+UabgEqzdXiP60BGvBPsQ="; 24 + sha256 = "sha256-H+GQUpouiXc/w6GWdkSVvTXZ/Dtb7sUmBLGcpxG3Mts="; 26 25 }; 27 26 28 27 sourceRoot = "${src.name}/src"; 29 - 30 - patches = [ 31 - # libxls and libxlsxwriter are not found without the patch 32 - # https://github.com/andmarti1424/sc-im/pull/542 33 - (fetchpatch { 34 - name = "use-pkg-config-for-libxls-and-libxlsxwriter.patch"; 35 - url = "https://github.com/andmarti1424/sc-im/commit/b62dc25eb808e18a8ab7ee7d8eb290e34efeb075.patch"; 36 - sha256 = "1yn32ps74ngzg3rbkqf8dn0g19jv4xhxrfgx9agnywf0x8gbwjh3"; 37 - }) 38 - ]; 39 - 40 - patchFlags = [ "-p2" ]; 41 28 42 29 nativeBuildInputs = [ 43 30 makeWrapper