mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
29 lines
826 B
Nix
29 lines
826 B
Nix
{ cairo, fetchzip, glib, gnome, gtk3, gobject-introspection, pkg-config, lib, stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osm-gps-map";
|
|
version = "1.2.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/nzjrs/osm-gps-map/releases/download/${version}/osm-gps-map-${version}.tar.gz";
|
|
sha256 = "sha256-ciw28YXhR+GC6B2VPC+ZxjyhadOk3zYGuOssSgqjwH0=";
|
|
};
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [
|
|
cairo glib gobject-introspection
|
|
gnome.gnome-common gtk3 gnome.libsoup
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GTK widget for displaying OpenStreetMap tiles";
|
|
homepage = "https://nzjrs.github.io/osm-gps-map";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ hrdinka ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|