My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/graphics/guff/default.nix

25 lines
551 B

{ 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 = "A plot device";
homepage = "https://github.com/silentbicycle/guff";
license = licenses.isc;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}