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

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

20 lines
778 B
Nix
Raw Normal View History

2024-05-15 14:12:49 +01:00
{ stdenv, callPackage, cmake, pkg-config, gobject-introspection
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 }:
stdenv.mkDerivation {
inherit (callPackage ./common-drv-attrs.nix {
version = "3.2.7";
pname = "libmirage";
hash = "sha256-+okkgNeVS8yoKSrQDy4It7PiPlTSiOsUoFxQ1FS9s9M=";
}) pname version src meta;
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";
buildInputs = [ glib libsndfile zlib bzip2 xz libsamplerate ];
2024-05-15 14:12:49 +01:00
nativeBuildInputs = [ cmake pkg-config intltool gobject-introspection ];
propagatedBuildInputs = [ pcre util-linux libselinux libsepol ];
2024-05-15 14:12:49 +01:00
2015-02-10 01:27:04 +00:00
}