nur-packages

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

podm-bin.nix (570B)


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