nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

trebleshot: init at 0.1.0-alpha2-15-ga7ac23c

+31
+29
pkgs/applications/networking/trebleshot/default.nix
··· 1 + { mkDerivation, lib, fetchFromGitHub 2 + , cmake, qtbase, kdnssd 3 + }: 4 + 5 + mkDerivation rec { 6 + pname = "trebleshot"; 7 + version = "0.1.0-alpha2-15-ga7ac23c"; 8 + # name="${pname}-${version}"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "genonbeta"; 12 + repo = "TrebleShot-Desktop"; 13 + rev = "${version}"; 14 + sha256 = "1k8wagw6arsi1lqkhn1nl6j11mb122vi1qs0q2np6nznwfy7pn1k"; 15 + }; 16 + 17 + nativeBuildInputs = [ cmake ]; 18 + 19 + buildInputs = [ qtbase kdnssd ]; 20 + 21 + meta = with lib; { 22 + description = "Android file transferring tool for desktop"; 23 + homepage = https://github.com/genonbeta/TrebleShot-Desktop; 24 + license = licenses.gpl2; 25 + 26 + platforms = platforms.linux; 27 + maintainers = with maintainers; [ woffs ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 6641 6641 6642 6642 trash-cli = callPackage ../tools/misc/trash-cli { }; 6643 6643 6644 + trebleshot = libsForQt5.callPackage ../applications/networking/trebleshot { }; 6645 + 6644 6646 trickle = callPackage ../tools/networking/trickle {}; 6645 6647 6646 6648 inherit (nodePackages) triton;