nixpkgs/pkgs/tools/misc/gbdfed/default.nix

33 lines
1,015 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, freetype, gtk }:
2014-07-13 11:22:10 +00:00
stdenv.mkDerivation rec {
version = "1.6";
pname = "gbdfed";
2014-07-13 11:22:10 +00:00
src = fetchurl {
url = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/${pname}-${version}.tar.bz2";
2014-07-13 11:22:10 +00:00
sha256 = "0g09k6wim58hngxncq2brr7mwjm92j3famp0vs4b3p48wr65vcjx";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ freetype gtk ];
2014-07-13 11:22:10 +00:00
patches = [ ./Makefile.patch ];
hardeningDisable = [ "format" ];
2016-02-11 00:25:47 +00:00
2014-07-13 11:22:10 +00:00
meta = {
description = "Bitmap Font Editor";
longDescription = ''
gbdfed lets you interactively create new bitmap font files or modify existing ones.
2021-01-15 09:19:50 +00:00
It allows editing multiple fonts and multiple glyphs,
2014-07-13 11:22:10 +00:00
it allows cut and paste operations between fonts and glyphs and editing font properties.
2021-01-15 09:19:50 +00:00
The editor works natively with BDF fonts.
2014-07-13 11:22:10 +00:00
'';
homepage = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.linquize ];
platforms = lib.platforms.all;
2014-07-13 11:22:10 +00:00
};
}