mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 11:15:12 +00:00
mimetic: fix compilation failure with new toolchain
This commit is contained in:
parent
5d7333150a
commit
fa5f78712d
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, cutee }:
|
||||
{ lib, stdenv, fetchurl, fetchpatch, cutee }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mimetic";
|
||||
@ -11,7 +11,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ cutee ];
|
||||
|
||||
patches = lib.optional stdenv.isAarch64 ./narrowing.patch;
|
||||
patches = [
|
||||
# Fix build with gcc11
|
||||
(fetchpatch {
|
||||
url = "https://github.com/tat/mimetic/commit/bf84940f9021950c80846e6b1a5f8b0b55991b00.patch";
|
||||
sha256 = "sha256-1JW9zPg67BgNsdIjK/jp9j7QMg50eRMz5FsDsbbzBlI=";
|
||||
})
|
||||
] ++ lib.optional stdenv.isAarch64 [ ./narrowing.patch ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "MIME handling library";
|
||||
|
Loading…
Reference in New Issue
Block a user