Merge pull request #223431 from Mic92/libowfat

libowfat: 0.32 -> 0.33

authored by

Thomas Gerbet and committed by
GitHub
2345d940 b6d27ebc

+8 -13
+3 -3
pkgs/applications/networking/p2p/opentracker/default.nix
··· 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "opentracker"; 5 - version = "unstable-2018-05-26"; 5 + version = "unstable-2021-08-23"; 6 6 7 7 src = fetchgit { 8 8 url = "https://erdgeist.org/gitweb/opentracker"; 9 - rev = "6411f1567f64248b0d145493c2e61004d2822623"; 10 - sha256 = "110nfb6n4clykwdzpk54iccsfjawq0krjfqhg114i1z0ri5dyl8j"; 9 + rev = "110868ec4ebe60521d5a4ced63feca6a1cf0aa2a"; 10 + sha256 = "sha256-SuElfmk7zONolTiyg0pyvbfvyJRn3r9OrXwpTzLw8LI="; 11 11 }; 12 12 13 13 buildInputs = [ libowfat zlib ];
+5 -10
pkgs/development/libraries/libowfat/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libowfat"; 5 - version = "0.32"; 5 + version = "0.33"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.fefe.de/libowfat/${pname}-${version}.tar.xz"; 9 - sha256 = "1hcqg7pvy093bxx8wk7i4gvbmgnxz2grxpyy7b4mphidjbcv7fgl"; 9 + sha256 = "sha256-MR7Is/S3K7RC4yP7ATqY+Vb6dFVH8ryUVih7INAnzX0="; 10 10 }; 11 11 12 - patches = [ 13 - (fetchurl { 14 - name = "first_deferred.patch"; 15 - url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-libs/libowfat/files/libowfat-0.32-gcc10.patch?id=129f4ab9f8571c651937c46ba7bd4c82d6d052a2"; 16 - sha256 = "zxWb9qq5dkDucOsiPfGG1Gb4BZ6HmhBjgSe3tBnydP4="; 17 - }) 18 - ]; 19 - 20 12 # Fix for glibc 2.34 from Gentoo 21 13 # https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914a4aa87415dabfe77181a2365766417a5919a4 22 14 postPatch = '' ··· 25 17 sed 's#__pure__$#__attrib__pure__#' -i fmt.h scan.h byte.h stralloc.h str.h critbit.h || die 26 18 # remove unneeded definition of __deprecated__ 27 19 sed '/^#define __deprecated__$/d' -i scan/scan_iso8601.c scan/scan_httpdate.c || die 20 + ''; 21 + preBuild = '' 22 + make headers 28 23 ''; 29 24 30 25 makeFlags = [ "prefix=$(out)" ];