nixpkgs-suyu/pkgs/development/nim-packages/vmath/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
472 B
Nix
Raw Normal View History

{ lib, buildNimPackage, fetchFromGitHub }:
2021-09-02 19:03:01 +02:00
buildNimPackage rec {
2021-09-02 19:03:01 +02:00
pname = "vmath";
version = "1.1.1";
src = fetchFromGitHub {
owner = "treeform";
repo = pname;
rev = version;
hash = "sha256-/v0lQIOMogTxFRtbssziW4W6VhMDepM6Si8igLgcx30=";
};
doCheck = true;
meta = with lib;
src.meta // {
description = "Math vector library for graphical things";
license = [ licenses.mit ];
maintainers = [ maintainers.ehmry ];
};
2021-09-02 19:03:01 +02:00
}