mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
17 lines
509 B
Nix
17 lines
509 B
Nix
{
|
|
definition = lib: pkgs:
|
|
let
|
|
version = "4.4.5";
|
|
appName = "qBittorrent";
|
|
pname = "qbittorrent";
|
|
|
|
src = pkgs.fetchurl {
|
|
url =
|
|
"https://phoenixnap.dl.sourceforge.net/project/qbittorrent/qbittorrent-mac/qbittorrent-${version}/qbittorrent-${version}.dmg";
|
|
sha256 = "sha256-9h+gFAEU0tKrltOjnOKLfylbbBunGZqvPzQogdP9uQM=";
|
|
};
|
|
in
|
|
lib.mk-mac-binpkg { inherit pkgs src pname appName version; };
|
|
|
|
systems = [ "aarch64-darwin" "x86_64-darwin" ];
|
|
}
|