scheme-bytestructures: init at 1.0.7
This commit is contained in:
parent
2c8871a7db
commit
74c602f211
2 changed files with 41 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, guile
|
||||||
|
, autoreconfHook
|
||||||
|
, pkg-config
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "scheme-bytestructures";
|
||||||
|
version = "1.0.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "TaylanUB";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0q0habjiy3h9cigb7q1br9kz6z212dn2ab31f6dgd3rrmsfn5rvb";
|
||||||
|
};
|
||||||
|
|
||||||
|
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";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ ethancedwards8 ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -12577,6 +12577,8 @@ in
|
||||||
|
|
||||||
scheme48 = callPackage ../development/interpreters/scheme48 { };
|
scheme48 = callPackage ../development/interpreters/scheme48 { };
|
||||||
|
|
||||||
|
scheme-bytestructures = callPackage ../development/scheme-modules/scheme-bytestructures { };
|
||||||
|
|
||||||
self = pkgsi686Linux.callPackage ../development/interpreters/self { };
|
self = pkgsi686Linux.callPackage ../development/interpreters/self { };
|
||||||
|
|
||||||
spark = callPackage ../applications/networking/cluster/spark { };
|
spark = callPackage ../applications/networking/cluster/spark { };
|
||||||
|
|
Loading…
Reference in a new issue