mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
15 lines
414 B
Nix
15 lines
414 B
Nix
{ pkgs, fetchurl, ... }:
|
|
|
|
let
|
|
version = "4.4.5";
|
|
appName = "qBittorrent";
|
|
pname = "qbittorrent";
|
|
|
|
src = fetchurl {
|
|
url =
|
|
"https://phoenixnap.dl.sourceforge.net/project/qbittorrent/qbittorrent-mac/qbittorrent-${version}/qbittorrent-${version}.dmg";
|
|
sha256 = "sha256-9h+gFAEU0tKrltOjnOKLfylbbBunGZqvPzQogdP9uQM=";
|
|
};
|
|
in
|
|
import ./mk-mac-binpkg.nix { inherit pkgs src pname appName version; }
|
|
|