nur-packages

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

podm-bin.nix (579B)


      1 {
      2   lib,
      3   stdenv,
      4   fetchurl,
      5 }:
      6 
      7 fetchurl {
      8   name = "slazav-podm-2020-12-03";
      9   url = "http://slazav.xyz/maps/podm/all_podm.img";
     10   sha256 = "0ils8dm81dmc937fqbdc0a5d8hwj6fx6ja8aci1vjg295fc77nk0";
     11 
     12   downloadToTemp = true;
     13   recursiveHash = true;
     14 
     15   postFetch = "install -Dm644 $downloadedFile $out/all_podm.img";
     16 
     17   meta = {
     18     homepage = "http://slazav.xyz/maps/podm_txt.htm";
     19     description = "Карты Подмосковья";
     20     license = lib.licenses.free;
     21     maintainers = [ lib.maintainers.sikmir ];
     22     platforms = lib.platforms.all;
     23     skip.ci = true;
     24   };
     25 }