468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
30 lines
783 B
Nix
30 lines
783 B
Nix
{ lib, stdenv, fetchurl, gnome, libxslt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mobile-broadband-provider-info";
|
|
version = "20201225";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1g9x2i4xjm2sagaha07n9psacbylrwfrmfqkp17gjwhpyi6w0zqd";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
# fixes configure: error: xsltproc not found
|
|
libxslt
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Mobile broadband service provider database";
|
|
homepage = "https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband/ServiceProviders";
|
|
license = licenses.publicDomain;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|