My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/idris-modules/bytes.nix

21 lines
496 B

{ build-idris-package
, fetchFromGitHub
, lib
}:
build-idris-package {
pname = "bytes";
version = "2018-02-10";
src = fetchFromGitHub {
owner = "ziman";
repo = "idris-bytes";
rev = "c0ed9db526d4529780f9d7d2636a40faa07661a5";
sha256 = "1xyb7k0mrk5imjf5jr2gvqwvasbfy6j4lxvz99r9icfz7crz8dfp";
};
meta = {
description = "FFI-based byte buffers for Idris";
homepage = "https://github.com/ziman/idris-bytes";
maintainers = [ lib.maintainers.brainrape ];
};
}