mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Merge pull request #71223 from woffs/pr-trebleshot
trebleshot: init at 0.1.0-alpha2-15-ga7ac23c
This commit is contained in:
commit
1623fe0791
29
pkgs/applications/networking/trebleshot/default.nix
Normal file
29
pkgs/applications/networking/trebleshot/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ mkDerivation, lib, fetchFromGitHub
|
||||
, cmake, qtbase, kdnssd
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "trebleshot";
|
||||
version = "0.1.0-alpha2-15-ga7ac23c";
|
||||
# name="${pname}-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "genonbeta";
|
||||
repo = "TrebleShot-Desktop";
|
||||
rev = "${version}";
|
||||
sha256 = "1k8wagw6arsi1lqkhn1nl6j11mb122vi1qs0q2np6nznwfy7pn1k";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ qtbase kdnssd ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Android file transferring tool for desktop";
|
||||
homepage = https://github.com/genonbeta/TrebleShot-Desktop;
|
||||
license = licenses.gpl2;
|
||||
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ woffs ];
|
||||
};
|
||||
}
|
|
@ -6731,6 +6731,8 @@ in
|
|||
|
||||
trash-cli = callPackage ../tools/misc/trash-cli { };
|
||||
|
||||
trebleshot = libsForQt5.callPackage ../applications/networking/trebleshot { };
|
||||
|
||||
trickle = callPackage ../tools/networking/trickle {};
|
||||
|
||||
inherit (nodePackages) triton;
|
||||
|
|
Loading…
Reference in a new issue