2022-01-02 16:48:54 +00:00
|
|
|
{ lib, buildNimPackage, fetchFromGitHub }:
|
2021-09-02 18:03:01 +01:00
|
|
|
|
2022-01-02 16:48:54 +00:00
|
|
|
buildNimPackage rec {
|
2021-09-02 18:03:01 +01:00
|
|
|
pname = "flatty";
|
2022-01-02 15:11:34 +00:00
|
|
|
version = "0.2.3";
|
2022-01-02 16:48:54 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "treeform";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
hash = "sha256-1tPLtnlGtE4SF5/ti/2svvYHpEy/0Za5N4YAOHFOyjA=";
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with lib;
|
|
|
|
src.meta // {
|
|
|
|
description = "Tools and serializer for plain flat binary files";
|
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = [ maintainers.ehmry ];
|
|
|
|
};
|
2021-09-02 18:03:01 +01:00
|
|
|
}
|