mmex: switch to fetchFromGitHub

This commit is contained in:
Felix Buehler 2022-03-15 11:26:51 +01:00
parent f8684d34e9
commit ee2a1e3a19

View file

@ -1,17 +1,14 @@
{ lib, stdenv, fetchgit, sqlite, wxGTK30, gettext, wrapGAppsHook }:
{ lib, stdenv, fetchFromGitHub, sqlite, wxGTK30, gettext, wrapGAppsHook }:
let
version = "1.3.3";
in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "money-manager-ex";
inherit version;
version = "1.3.3";
src = fetchgit {
url = "https://github.com/moneymanagerex/moneymanagerex.git";
src = fetchFromGitHub {
owner = "moneymanagerex";
repo = "moneymanagerex";
rev = "refs/tags/v${version}";
sha256 = "0r4n93z3scv0i0zqflsxwv7j4yl8jy3gr0m4l30y1q8qv0zj9n74";
sha256 = "sha256-5NgkP9gY4eDBoKSC/IaXiHoiz+ZdU4c/iGAzPf5IlmQ=";
};
nativeBuildInputs = [