Merge pull request #127782 from malbarbo/tmux-static

This commit is contained in:
Sandro 2021-06-22 15:10:55 +02:00 committed by GitHub
commit df1ec730c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{ lib, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, pkg-config
, bison
@ -31,6 +32,14 @@ stdenv.mkDerivation rec {
sha256 = "0143ylfk7zsl3xmiasb768238gr582cfhsgv3p0h0f13bp8d6q09";
};
patches = [
# See https://github.com/tmux/tmux/pull/2755
(fetchpatch {
url = "https://github.com/tmux/tmux/commit/d0a2683120ec5a33163a14b0e1b39d208745968f.patch";
sha256 = "070knpncxfxi6k4q64jwi14ns5vm3606cf402h1c11cwnaa84n1g";
})
];
nativeBuildInputs = [
pkg-config
autoreconfHook