nur-packages

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

default.nix (625B)


      1 {
      2   lib,
      3   fetchFromGitHub,
      4   python3Packages,
      5 }:
      6 
      7 python3Packages.buildPythonApplication {
      8   pname = "gpx-cmd-tools";
      9   version = "0-unstable-2020-08-08";
     10 
     11   src = fetchFromGitHub {
     12     owner = "tkrajina";
     13     repo = "gpx-cmd-tools";
     14     rev = "e042c4d65cc153ddf3589b4d8723bed5f71a9d0d";
     15     hash = "sha256-x3/PNACBrT5XSlgpZj0WO27KW0DiF6Je2z3gX5g/Gz0=";
     16   };
     17 
     18   dependencies = with python3Packages; [ gpxpy ];
     19 
     20   meta = {
     21     description = "Set of GPX command-line utilities";
     22     homepage = "https://github.com/tkrajina/gpx-cmd-tools";
     23     license = lib.licenses.asl20;
     24     maintainers = [ lib.maintainers.sikmir ];
     25   };
     26 }