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