nixpkgs/pkgs/development/guile-modules/guile-xcb/default.nix

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

41 lines
757 B
Nix
Raw Normal View History

2021-04-15 15:06:35 +00:00
{ lib
, stdenv
2022-02-06 12:36:36 +00:00
, fetchFromGitHub
2021-04-15 15:06:35 +00:00
, guile
, pkg-config
, texinfo
}:
2014-02-08 02:52:59 +00:00
2021-04-15 15:06:35 +00:00
stdenv.mkDerivation rec {
pname = "guile-xcb";
version = "1.3";
2014-02-08 02:52:59 +00:00
2022-02-06 12:36:36 +00:00
src = fetchFromGitHub {
owner = "mwitmer";
repo = pname;
rev = version;
hash = "sha256-8iaYil2wiqnu9p7Gj93GE5akta1A0zqyApRwHct5RSs=";
2014-02-08 02:52:59 +00:00
};
2021-04-15 15:06:35 +00:00
nativeBuildInputs = [
pkg-config
];
buildInputs = [
guile
texinfo
];
2014-02-08 02:52:59 +00:00
2021-04-15 15:06:35 +00:00
configureFlags = [
"--with-guile-site-dir=$out/share/guile/site"
"--with-guile-site-ccache-dir=$out/share/guile/site"
];
meta = with lib; {
2022-02-06 12:36:36 +00:00
homepage = "https://github.com/mwitmer/guile-xcb";
2021-04-15 15:06:35 +00:00
description = "XCB bindings for Guile";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ vyp ];
platforms = platforms.linux;
};
2014-02-08 02:52:59 +00:00
}