depot/pkgs/tools/graphics/guff/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

26 lines
556 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "guff";
version = "0.1.0";
src = fetchFromGitHub {
owner = "silentbicycle";
repo = "guff";
rev = "v${version}";
sha256 = "0n8mc9j3044j4b3vgc94ryd2j9ik6g73fqja54yxfdfrks4ksyds";
};
makeFlags = [ "PREFIX=$(out)" ];
doCheck = true;
meta = with lib; {
description = "Plot device";
homepage = "https://github.com/silentbicycle/guff";
license = licenses.isc;
maintainers = [ ];
platforms = platforms.all;
mainProgram = "guff";
};
}