d1acd89e01
* vmath 1.0.3 -> 1.1.1 * check bumpy, flatty, vmath, and zippy * remove typography, it was merged into pixie The hottext package is now broken.
26 lines
592 B
Nix
26 lines
592 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 ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib;
|
|
src.meta // {
|
|
description = "Full-featured 2d graphics library for Nim";
|
|
license = [ licenses.mit ];
|
|
maintainers = [ maintainers.ehmry ];
|
|
};
|
|
}
|