summary refs log tree commit diff
path: root/pkgs/development/nim-packages/flatty/default.nix
blob: 5e542d22e4a537f403b7165a942d2171690b7150 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildNimPackage, fetchFromGitHub }:

buildNimPackage rec {
  pname = "flatty";
  version = "0.2.3";

  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 ];
    };
}