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

39 lines
768 B
Nix
Raw Normal View History

2021-04-15 15:06:35 +00:00
{ lib
, stdenv
, fetchurl
, 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
src = fetchurl {
2021-04-15 15:06:35 +00:00
url = "http://www.markwitmer.com/dist/${pname}-${version}.tar.gz";
hash = "sha256-iYR6AYSTgUsURAEJTWcdHlc0f8LzEftAIsfonBteuxE=";
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; {
homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html";
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
}