mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
47 lines
908 B
Nix
47 lines
908 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, guile
|
|
, pkg-config
|
|
, texinfo
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "guile-xcb";
|
|
version = "unstable-2017-05-29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mwitmer";
|
|
repo = pname;
|
|
rev = "db7d5a393cc37a56f66541b3f33938b40c6f35b3";
|
|
hash = "sha256-zbIsEIPwNJ1YXMZTDw2DfzufC+IZWfcWgZHbuv7bhJs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
guile
|
|
texinfo
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-guile-site-dir=$(out)/${guile.siteDir}"
|
|
"--with-guile-site-ccache-dir=$(out)/${guile.siteCcacheDir}"
|
|
];
|
|
|
|
makeFlags = [
|
|
"GUILE_AUTO_COMPILE=0"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mwitmer/guile-xcb";
|
|
description = "XCB bindings for Guile";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ vyp ];
|
|
platforms = guile.meta.platforms;
|
|
};
|
|
}
|