mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
21 lines
688 B
Nix
21 lines
688 B
Nix
{ lib, mkFranzDerivation, fetchurl }:
|
|
|
|
mkFranzDerivation rec {
|
|
pname = "franz";
|
|
name = "Franz";
|
|
version = "5.9.2";
|
|
src = fetchurl {
|
|
url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb";
|
|
sha256 = "sha256-W/60g5CbSUZcNASjdbiS7DNv9375GiesEG60QLLAh1g=";
|
|
};
|
|
meta = with lib; {
|
|
description = "A free messaging app that combines chat & messaging services into one application";
|
|
homepage = "https://meetfranz.com";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.free;
|
|
maintainers = [ maintainers.davidtwco ];
|
|
platforms = [ "x86_64-linux" ];
|
|
hydraPlatforms = [ ];
|
|
};
|
|
}
|