linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / convfont / default.nix
blob501c4e29a416a672fff24f0d5aeb77aaaff17bdd
1 { lib, stdenv
2 , fetchFromGitHub
3 }:
5 stdenv.mkDerivation rec {
6   pname = "convfont";
7   version = "1.0";
9   src = fetchFromGitHub {
10     owner = "drdnar";
11     repo = pname;
12     rev = "v20190438";
13     sha256 = "1lj24yq5gj9hxhy1srk73521q95zyqzkws0q4v271hf5wmqaxa2f";
14   };
16   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
18   installPhase = ''
19     install -Dm755 convfont $out/bin/convfont
20   '';
22   meta = with lib; {
23     description = "Converts font for use with FontLibC";
24     homepage = "https://github.com/drdnar/convfont";
25     license = licenses.wtfpl;
26     maintainers = with maintainers; [ luc65r ];
27     platforms = platforms.all;
28   };