nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (608B)


      1 { lib, stdenv, fetchFromGitHub, autoreconfHook, bison, flex }:
      2 
      3 stdenv.mkDerivation rec {
      4   pname = "hfst";
      5   version = "3.15.5";
      6 
      7   src = fetchFromGitHub {
      8     owner = "hfst";
      9     repo = pname;
     10     rev = "v${version}";
     11     hash = "sha256-BvcueEdu+4rTeazvZ08BtNHkvGBIZi6W1+Fn3tJMxac=";
     12   };
     13 
     14   nativeBuildInputs = [ autoreconfHook bison flex ];
     15 
     16   meta = with lib; {
     17     description = "Helsinki Finite-State Technology (library and application suite)";
     18     homepage = "https://hfst.github.io";
     19     license = licenses.gpl3Plus;
     20     maintainers = [ maintainers.sikmir ];
     21     platforms = platforms.unix;
     22   };
     23 }