nixpkgs/pkgs/tools/graphics/guff/default.nix

26 lines
551 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub }:
2018-12-24 00:10:13 +00:00
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;
2021-01-15 09:19:50 +00:00
meta = with lib; {
2018-12-24 00:10:13 +00:00
description = "A plot device";
homepage = "https://github.com/silentbicycle/guff";
2018-12-24 00:10:13 +00:00
license = licenses.isc;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}