summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitqlient
diff options
context:
space:
mode:
authorCole Mickens <cole.mickens@gmail.com>2020-05-03 18:52:01 -0700
committerJosé Romildo <malaquias@gmail.com>2022-03-10 10:18:06 -0300
commit719e043290bde73dc4ef4e70366f7addc64c9085 (patch)
treec2067c83400a68231ede1d3480fdfdf44946a92f /pkgs/applications/version-management/gitqlient
parent83580a2e4f57872c25393bdf7e8c14bb402ddca8 (diff)
downloadnixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar.gz
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar.bz2
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar.lz
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar.xz
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.tar.zst
nixpkgs-719e043290bde73dc4ef4e70366f7addc64c9085.zip
gitqlient: init at 1.4.3
Diffstat (limited to 'pkgs/applications/version-management/gitqlient')
-rw-r--r--pkgs/applications/version-management/gitqlient/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/gitqlient/default.nix b/pkgs/applications/version-management/gitqlient/default.nix
new file mode 100644
index 00000000000..3737828ef72
--- /dev/null
+++ b/pkgs/applications/version-management/gitqlient/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, qmake
+, qtwebengine
+, gitUpdater
+}:
+
+mkDerivation rec {
+  pname = "gitqlient";
+  version = "1.4.3";
+
+  src = fetchFromGitHub {
+    owner = "francescmm";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "018jz6b28zwr205jmgw13ddlfvlhxqf0cw1pfjiwsi6i8gay7w6s";
+  };
+
+  nativeBuildInputs = [
+    qmake
+  ];
+
+  buildInputs = [
+    qtwebengine
+  ];
+
+  qmakeFlags = [
+    "GitQlient.pro"
+  ];
+
+  passthru.updateScript = gitUpdater { inherit pname version; };
+
+  meta = with lib; {
+    homepage = "https://github.com/francescmm/GitQlient";
+    description = "Multi-platform Git client written with Qt";
+    license = licenses.lgpl2Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ romildo ];
+  };
+}