mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
23 lines
481 B
Nix
23 lines
481 B
Nix
{ lib, buildNimPackage, fetchFromGitHub }:
|
|
|
|
buildNimPackage rec {
|
|
pname = "flatty";
|
|
version = "0.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "treeform";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-ZmhjehmEJHm5qNlsGQvyYLajUdwhWt1+AtRppRrNtgA=";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib;
|
|
src.meta // {
|
|
description = "Tools and serializer for plain flat binary files";
|
|
license = [ licenses.mit ];
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
}
|