nixpkgs/pkgs/development/scheme-modules/scheme-bytestructures/default.nix

40 lines
858 B
Nix
Raw Normal View History

2021-06-12 04:42:20 +00:00
{ lib
, stdenv
, fetchFromGitHub
, guile
, autoreconfHook
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "scheme-bytestructures";
2021-06-21 00:24:58 +00:00
version = "1.0.10";
2021-06-12 04:42:20 +00:00
src = fetchFromGitHub {
owner = "TaylanUB";
repo = pname;
rev = "v${version}";
2021-06-21 00:24:58 +00:00
sha256 = "04oDvwvzTRzAVyywbcCm3Ug3p3xNbxjI7nOKYakEZZI=";
2021-06-12 04:42:20 +00:00
};
postConfigure = ''
sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile;
sed -i '/godir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile;
'';
nativeBuildInputs = [
autoreconfHook pkg-config
];
buildInputs = [
guile
];
meta = with lib; {
description = "Structured access to bytevector contents";
homepage = "https://github.com/TaylanUB/scheme-bytestructures";
2021-06-12 05:18:36 +00:00
license = licenses.gpl3Plus;
2021-06-12 04:42:20 +00:00
maintainers = with maintainers; [ ethancedwards8 ];
platforms = platforms.unix;
2021-06-12 04:42:20 +00:00
};
}