groovylight/sim/package.nix
saji f3789b6432
Some checks failed
Verilator Unit Tests / Test (push) Failing after 5m10s
sokol works, working on nix tooling
2024-05-26 08:48:38 -05:00

11 lines
211 B
Nix

{ pkgs }:
stdenv.mkDerivation {
pname = "groovysim";
version = "0.0.1";
meta = with pkgs.lib; {
description = "Hub75 display simulator";
};
src = ./.;
nativeBuildInputs = with pkgs; [ cmake ];
}