nur-packages

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

default.nix (651B)


      1 { lib, fetchwebarchive, unzip }:
      2 
      3 fetchwebarchive {
      4   name = "qmapshack-onlinemaps-2022-09-02";
      5   url = "http://www.mtb-touring.net/wp-content/uploads/Onlinemaps.zip";
      6   timestamp = "20231026090331";
      7   hash = "sha256-5xXyaWhUwOZPGb+unYh4A0Hzznk2nRPHtIxdiiQHlHY=";
      8   downloadToTemp = true;
      9   recursiveHash = true;
     10   postFetch = ''
     11     ${unzip}/bin/unzip $downloadedFile -d $out
     12   '';
     13 
     14   meta = with lib; {
     15     description = "Onlinekarten einbinden";
     16     homepage = "http://www.mtb-touring.net/qms/onlinekarten-einbinden/";
     17     license = licenses.free;
     18     maintainers = [ maintainers.sikmir ];
     19     platforms = platforms.all;
     20     skip.ci = true;
     21   };
     22 }