forked from mirrors/nixpkgs
24 lines
697 B
Nix
24 lines
697 B
Nix
|
{ lib, buildNimPackage, fetchFromGitHub, python, rocksdb, snappy, spryvm, stew
|
||
|
, tempfile, ui }:
|
||
|
|
||
|
buildNimPackage rec {
|
||
|
pname = "spry";
|
||
|
version = "0.9.0";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "gokr";
|
||
|
repo = pname;
|
||
|
rev = "098da7bb34a9113d5db5402fecfc76b1c3fa3b36";
|
||
|
hash = "sha256-PfWBrG2Z16tLgcN8JYpHaNMysBbbYX812Lkgk0ItMwE=";
|
||
|
};
|
||
|
buildInputs = [ python rocksdb snappy spryvm stew tempfile ui ];
|
||
|
patches = [ ./nil.patch ];
|
||
|
doCheck = true;
|
||
|
meta = with lib;
|
||
|
src.meta // {
|
||
|
description =
|
||
|
"A Smalltalk and Rebol inspired language implemented as an AST interpreter in Nim";
|
||
|
license = [ licenses.mit ];
|
||
|
maintainers = [ maintainers.ehmry ];
|
||
|
};
|
||
|
}
|