about summary refs log tree commit diff
path: root/pkgs/applications/networking/trebleshot/default.nix
diff options
context:
space:
mode:
authorFrank Doepper <github@woffs.de>2019-10-16 12:15:19 +0200
committerFrank Doepper <github@woffs.de>2019-10-16 12:15:19 +0200
commit5dd36f2a6f6e70454745b0e14bdebb249ea66c2f (patch)
treeaf52651e63b84eb3a82fca09392d2beb2f718d38 /pkgs/applications/networking/trebleshot/default.nix
parentcc9505aab1dbc0cca1be1ce81af5842271306a92 (diff)
downloadnixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar.gz
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar.bz2
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar.lz
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar.xz
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.tar.zst
nixlib-5dd36f2a6f6e70454745b0e14bdebb249ea66c2f.zip
trebleshot: init at 0.1.0-alpha2-15-ga7ac23c
Diffstat (limited to 'pkgs/applications/networking/trebleshot/default.nix')
-rw-r--r--pkgs/applications/networking/trebleshot/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/networking/trebleshot/default.nix b/pkgs/applications/networking/trebleshot/default.nix
new file mode 100644
index 000000000000..1b049ff2dc7f
--- /dev/null
+++ b/pkgs/applications/networking/trebleshot/default.nix
@@ -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 ];
+  };
+}