anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / gbdfed / default.nix
blob9ad0590c96d51feaa31c7191c3d7feb5d7cdc4b7
1  { lib, stdenv, fetchurl, pkg-config, freetype, gtk }:
3 stdenv.mkDerivation rec {
4   version = "1.6";
5   pname = "gbdfed";
7   src = fetchurl {
8     url = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/gbdfed-${version}.tar.bz2";
9     sha256 = "0g09k6wim58hngxncq2brr7mwjm92j3famp0vs4b3p48wr65vcjx";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ freetype gtk ];
15   patches = [ ./Makefile.patch ];
17   hardeningDisable = [ "format" ];
19   meta = {
20     description = "Bitmap Font Editor";
21     longDescription = ''
22       gbdfed lets you interactively create new bitmap font files or modify existing ones.
23       It allows editing multiple fonts and multiple glyphs,
24       it allows cut and paste operations between fonts and glyphs and editing font properties.
25       The editor works natively with BDF fonts.
26     '';
27     homepage = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/";
28     license = lib.licenses.mit;
29     maintainers = [ lib.maintainers.linquize ];
30     platforms = lib.platforms.all;
31     mainProgram = "gbdfed";
32   };