mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-11 18:32:23 +08:00
Changelog: https://framagit.org/kaihuri/mobilizon/-/releases/5.1.5
(cherry picked from commit b46d1b3171)
15 lines
261 B
Nix
15 lines
261 B
Nix
{ fetchFromGitLab }:
|
|
rec {
|
|
|
|
pname = "mobilizon";
|
|
version = "5.1.5";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "kaihuri";
|
|
repo = pname;
|
|
tag = version;
|
|
hash = "sha256-nwEmW43GO0Ta7O7mUSJaEtm4hBfXInPqatBRdaWrhBU=";
|
|
};
|
|
}
|