nur-packages

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

package.nix (695B)


      1 {
      2   lib,
      3   fetchFromGitea,
      4   python3Packages,
      5 }:
      6 
      7 python3Packages.buildPythonApplication {
      8   pname = "gmi2html";
      9   version = "1.0-unstable-2022-02-16";
     10   pyproject = true;
     11 
     12   src = fetchFromGitea {
     13     domain = "notabug.org";
     14     owner = "tinyrabbit";
     15     repo = "gmi2html";
     16     rev = "141c3978961ec6cf8530efc810bcd283320c3628";
     17     hash = "sha256-MFoNOm/BOao5pOntW9Pqn3IjCCjyw6pJL9OXf9RpGIs=";
     18   };
     19 
     20   build-system = with python3Packages; [ setuptools ];
     21 
     22   meta = {
     23     description = "A library and CLI tool for converting text/gemini to text/html";
     24     homepage = "https://notabug.org/tinyrabbit/gmi2html";
     25     license = lib.licenses.mit;
     26     maintainers = [ lib.maintainers.sikmir ];
     27   };
     28 }