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