summary refs log blame commit diff
path: root/pkgs/tools/misc/bdf2sfd/default.nix
blob: f18e5e2d96277226848c87eb694cab75161ef075 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                        


                         
                    




                         
                                                                   



                                
                    


                                                    
                              


                                                
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  pname = "bdf2sfd";
  version = "1.1.8";

  src = fetchFromGitHub {
    owner = "fcambus";
    repo = pname;
    rev = version;
    sha256 = "sha256-+CPULpy3mqZv0QaXS4kKYWKjifibtcQt7unKGOUTSV0=";
  };

  nativeBuildInputs = [ cmake ];

  meta = with lib; {
    description = "BDF to SFD converter";
    homepage = "https://github.com/fcambus/bdf2sfd";
    license = licenses.bsd2;
    platforms = platforms.all;
    maintainers = with maintainers; [ dtzWill ];
  };
}