mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
37 lines
758 B
Nix
37 lines
758 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, guile
|
|
, autoreconfHook
|
|
, pkg-config
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scheme-bytestructures";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TaylanUB";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Wvs288K8BVjUuWvvzpDGBwOxL7mAXjVtgIwJAsQd0L4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook pkg-config
|
|
];
|
|
buildInputs = [
|
|
guile
|
|
];
|
|
|
|
doCheck = true;
|
|
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
|
|
|
|
meta = with lib; {
|
|
description = "Structured access to bytevector contents";
|
|
homepage = "https://github.com/TaylanUB/scheme-bytestructures";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ ethancedwards8 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|