mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 16:11:22 +00:00
mimetic: fix compilation failure with new toolchain
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user