9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
24 lines
574 B
Nix
24 lines
574 B
Nix
{ lib, buildNimPackage, fetchFromGitHub, bumpy, chroma, flatty, nimsimd, vmath
|
|
, zippy }:
|
|
|
|
buildNimPackage rec {
|
|
pname = "pixie";
|
|
version = "3.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "treeform";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-rF72ybfsipBHgQmH0e6DBn1e7WWY6dGn9yp1qvLIS3A=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ bumpy chroma flatty nimsimd vmath zippy ];
|
|
|
|
|
|
meta = with lib;
|
|
src.meta // {
|
|
description = "Full-featured 2d graphics library for Nim";
|
|
license = [ licenses.mit ];
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
}
|