nixpkgs/pkgs/applications/emulators/cdemu/libmirage.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
751 B
Nix
Raw Normal View History

2021-01-17 03:30:45 +01:00
{ callPackage, gobject-introspection, cmake, pkg-config
2021-03-14 19:12:53 +01:00
, glib, libsndfile, zlib, bzip2, xz, libsamplerate, intltool
2020-11-24 16:29:28 +01:00
, pcre, util-linux, libselinux, libsepol }:
2015-02-10 02:27:04 +01:00
let pkg = import ./base.nix {
2021-08-30 17:11:01 +02:00
version = "3.2.5";
2022-01-22 18:13:29 +01:00
pname = "libmirage";
2021-08-30 17:11:01 +02:00
pkgSha256 = "0f8i2ha44rykkk3ac2q8zsw3y1zckw6qnf6zvkyrj3qqbzhrf3fm";
2015-02-10 02:27:04 +01:00
};
in callPackage pkg {
buildInputs = [ glib libsndfile zlib bzip2 xz libsamplerate ];
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";
nativeBuildInputs = [ cmake gobject-introspection pkg-config intltool ];
2020-11-24 16:29:28 +01:00
propagatedBuildInputs = [ pcre util-linux libselinux libsepol ];
};
2015-02-10 02:27:04 +01:00
}