summary refs log blame commit diff
path: root/pkgs/development/libraries/libspiro/default.nix
blob: 03bfe14d3beec4de8209b84e956a2eb09671cfa4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                            

                         
                     
                       




                         
                                                                    

    
                                                    
 
                    
                                                                              
                                                       
                                
                                            

    
{lib, stdenv, pkg-config, autoreconfHook, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "libspiro";
  version = "20200505";

  src = fetchFromGitHub {
    owner = "fontforge";
    repo = pname;
    rev = version;
    sha256 = "1b5bw5qxqlral96y1n5f3sh9yxm2yij3zkqjmlgd8r1k4j0d3nqw";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook ];

  meta = with lib; {
    description = "A library that simplifies the drawing of beautiful curves";
    homepage = "https://github.com/fontforge/libspiro";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.erictapen ];
  };
}