summary refs log tree commit diff
path: root/pkgs/tools/networking/ofono
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-15 04:21:46 -0800
committerGitHub <noreply@github.com>2022-02-15 13:21:46 +0100
commit966006a0ac2109f9fc68c47df277160974edeb80 (patch)
treeff6a857b0b156cd10b307ab2be3ea9730f835b03 /pkgs/tools/networking/ofono
parent6a972fb8bb382d8f1ef14c19c298596162900ce8 (diff)
downloadnixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar.gz
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar.bz2
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar.lz
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar.xz
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.tar.zst
nixpkgs-966006a0ac2109f9fc68c47df277160974edeb80.zip
ofono: 1.33 -> 1.34
* ofono: 1.33 -> 1.34 (#159709)

* ofono: refresh meta attributes

Update homepage
Add changelog
Use SPDX 3.0 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/tools/networking/ofono')
-rw-r--r--pkgs/tools/networking/ofono/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/networking/ofono/default.nix b/pkgs/tools/networking/ofono/default.nix
index de8b3d69960..80e37782154 100644
--- a/pkgs/tools/networking/ofono/default.nix
+++ b/pkgs/tools/networking/ofono/default.nix
@@ -12,14 +12,14 @@
 
 stdenv.mkDerivation rec {
   pname = "ofono";
-  version = "1.33";
+  version = "1.34";
 
   outputs = [ "out" "dev" ];
 
   src = fetchgit {
     url = "git://git.kernel.org/pub/scm/network/ofono/ofono.git";
     rev = version;
-    sha256 = "sha256-UTFP69yv1epVrqBoRKCRcR2WiKBG01sLTzrsh/Nude4=";
+    sha256 = "sha256-mqltc+/RmQO8awP+J7p9fCVhNsEYA3SgxeV5Gkr1srg=";
   };
 
   patches = [
@@ -58,8 +58,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Infrastructure for building mobile telephony (GSM/UMTS) applications";
-    homepage = "https://01.org/ofono";
-    license = licenses.gpl2;
+    homepage = "https://git.kernel.org/pub/scm/network/ofono/ofono.git";
+    changelog = "https://git.kernel.org/pub/scm/network/ofono/ofono.git/plain/ChangeLog?h=${version}";
+    license = licenses.gpl2Only;
     maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.linux;
   };