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

33 lines
1,013 B
Nix
Raw Normal View History

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