3
0
Fork 0
forked from mirrors/nixpkgs

guff: init at 0.1.0

This commit is contained in:
Mario Rodas 2018-12-23 19:10:13 -05:00
parent a47c3b32ab
commit f994e5fe8d
No known key found for this signature in database
GPG key ID: 325649BCA6D53027
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ 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 stdenv.lib; {
description = "A plot device";
homepage = https://github.com/silentbicycle/guff;
license = licenses.isc;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}

View file

@ -8719,6 +8719,8 @@ in
gtkdialog = callPackage ../development/tools/misc/gtkdialog { };
guff = callPackage ../tools/graphics/guff { };
guile-lint = callPackage ../development/tools/guile/guile-lint {
guile = guile_1_8;
};