mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
22 lines
493 B
Nix
22 lines
493 B
Nix
|
{ build-idris-package
|
||
|
, fetchFromGitHub
|
||
|
, lib
|
||
|
}:
|
||
|
build-idris-package {
|
||
|
name = "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 ];
|
||
|
};
|
||
|
}
|