agenda: 1.1.2 -> 1.2.1 (#440882)

authored by Bobby Rong and committed by GitHub 92213a56 45e3bc24

+6 -13
+6 -13
pkgs/by-name/ag/agenda/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 nix-update-script, 6 + desktop-file-utils, 6 7 pantheon, 7 8 meson, 8 9 ninja, 9 - python3, 10 10 pkg-config, 11 11 vala, 12 12 gettext, ··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "agenda"; 21 - version = "1.1.2"; 21 + version = "1.2.1"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "dahenson"; 25 25 repo = "agenda"; 26 - rev = version; 27 - sha256 = "sha256-tzGcqCxIkoBNskpadEqv289Sj5bij9u+LdYySiGdop8="; 26 + tag = version; 27 + hash = "sha256-CjlGkG43FFDdKGuwevBeCCazOzLcH114bqihMWTykC8="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ 31 + desktop-file-utils 31 32 gettext 32 33 glib # for glib-compile-schemas 33 34 meson 34 35 ninja 35 36 pkg-config 36 - python3 37 37 vala 38 38 wrapGAppsHook3 39 39 ]; ··· 45 45 pantheon.granite 46 46 ]; 47 47 48 - postPatch = '' 49 - chmod +x meson/post_install.py 50 - patchShebangs meson/post_install.py 51 - ''; 52 - 53 - doCheck = true; 54 - 55 48 passthru = { 56 49 updateScript = nix-update-script { }; 57 50 }; ··· 62 55 maintainers = with maintainers; [ xiorcale ]; 63 56 teams = [ teams.pantheon ]; 64 57 platforms = platforms.linux; 65 - license = licenses.gpl3; 58 + license = licenses.gpl3Plus; 66 59 mainProgram = "com.github.dahenson.agenda"; 67 60 }; 68 61 }