mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
bastet: fix build with new boost
This commit is contained in:
parent
8f43c56755
commit
3e4737d16c
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, ncurses, boost }:
|
||||
{ stdenv, fetchFromGitHub, fetchpatch, ncurses, boost }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bastet-${version}";
|
||||
|
@ -12,6 +12,14 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "09kamxapm9jw9przpsgjfg33n9k94bccv65w95dakj0br33a75wn";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Compatibility with new Boost
|
||||
(fetchpatch {
|
||||
url = "https://github.com/fph/bastet/commit/0e03f8d4d6bc6949cf1c447e632ce0d1b98c4be1.patch";
|
||||
sha256 = "1475hisbm44jirsrhdlnddppsyn83xmvcx09gfkm9drcix05alzj";
|
||||
})
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p "$out"/bin
|
||||
cp bastet "$out"/bin/
|
||||
|
|
Loading…
Reference in a new issue