orcania: fix paths in pkg-config file
This commit is contained in:
committed by
Artturin
parent
cb3a81d16c
commit
bf76af5535
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
|
||||
{ lib, stdenv, fetchpatch, fetchFromGitHub, cmake, check, subunit }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "orcania";
|
||||
version = "2.3.0";
|
||||
@@ -10,6 +10,15 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-QAq/6MGVj+iBHLElHuqokF1v3LU1TZ9hVVJE1s3y6f0=";
|
||||
};
|
||||
|
||||
# in master post 2.2.2, see https://github.com/babelouest/orcania/issues/27
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
name = "fix-pkg-config.patch";
|
||||
url = "https://github.com/babelouest/orcania/commit/4eac7d5ff76bb3bec8250fef300b723c8891552a.patch";
|
||||
sha256 = "01bsxay1ca8d08ac3ddcqyvjwgz5mgs68jz5y3gzq4qnzl3q1i54";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
checkInputs = [ check subunit ];
|
||||
|
||||
Reference in New Issue
Block a user