2021-01-17 02:30:45 +00:00
|
|
|
{ callPackage, gobject-introspection, cmake, pkg-config
|
2021-03-14 18:12:53 +00:00
|
|
|
, glib, libsndfile, zlib, bzip2, xz, libsamplerate, intltool
|
2020-11-24 15:29:28 +00:00
|
|
|
, pcre, util-linux, libselinux, libsepol }:
|
2019-04-04 18:12:14 +01:00
|
|
|
|
2015-02-10 01:27:04 +00:00
|
|
|
let pkg = import ./base.nix {
|
2021-08-30 16:11:01 +01:00
|
|
|
version = "3.2.5";
|
2022-01-22 17:13:29 +00:00
|
|
|
pname = "libmirage";
|
2021-08-30 16:11:01 +01:00
|
|
|
pkgSha256 = "0f8i2ha44rykkk3ac2q8zsw3y1zckw6qnf6zvkyrj3qqbzhrf3fm";
|
2015-02-10 01:27:04 +00:00
|
|
|
};
|
|
|
|
in callPackage pkg {
|
2021-03-14 18:12:53 +00:00
|
|
|
buildInputs = [ glib libsndfile zlib bzip2 xz libsamplerate intltool ];
|
2019-04-04 18:12:14 +01:00
|
|
|
drvParams = {
|
|
|
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "out"}/share/gir-1.0";
|
|
|
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
|
2021-01-17 02:30:45 +00:00
|
|
|
nativeBuildInputs = [ cmake gobject-introspection pkg-config ];
|
2020-11-24 15:29:28 +00:00
|
|
|
propagatedBuildInputs = [ pcre util-linux libselinux libsepol ];
|
2019-04-04 18:12:14 +01:00
|
|
|
};
|
2015-02-10 01:27:04 +00:00
|
|
|
}
|