smap: init at 0.1.12 (#371402)
[NixPkgs.git] / pkgs / tools / misc / gbdfed / default.nix
blob1d72d2c05f441f16765b394720f12effe755ee73
2   lib,
3   stdenv,
4   fetchurl,
5   pkg-config,
6   freetype,
7   gtk,
8 }:
10 stdenv.mkDerivation rec {
11   version = "1.6";
12   pname = "gbdfed";
14   src = fetchurl {
15     url = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/gbdfed-${version}.tar.bz2";
16     sha256 = "0g09k6wim58hngxncq2brr7mwjm92j3famp0vs4b3p48wr65vcjx";
17   };
19   nativeBuildInputs = [ pkg-config ];
20   buildInputs = [
21     freetype
22     gtk
23   ];
25   patches = [ ./Makefile.patch ];
27   hardeningDisable = [ "format" ];
29   meta = {
30     description = "Bitmap Font Editor";
31     longDescription = ''
32       gbdfed lets you interactively create new bitmap font files or modify existing ones.
33       It allows editing multiple fonts and multiple glyphs,
34       it allows cut and paste operations between fonts and glyphs and editing font properties.
35       The editor works natively with BDF fonts.
36     '';
37     homepage = "http://sofia.nmsu.edu/~mleisher/Software/gbdfed/";
38     license = lib.licenses.mit;
39     maintainers = [ lib.maintainers.linquize ];
40     platforms = lib.platforms.all;
41     mainProgram = "gbdfed";
42   };