mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
15 lines
266 B
Nix
15 lines
266 B
Nix
|
{ fetchFromGitLab }: rec {
|
||
|
|
||
|
pname = "mobilizon";
|
||
|
version = "3.1.3";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
domain = "framagit.org";
|
||
|
owner = "framasoft";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
sha256 = "sha256-vYn8wE3cwOH3VssPDKKWAV9ZLKMSGg6XVWFZzJ9HSw0=";
|
||
|
};
|
||
|
|
||
|
}
|