summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-workspace/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/version-management/git-workspace/default.nix')
-rw-r--r--pkgs/applications/version-management/git-workspace/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-workspace/default.nix b/pkgs/applications/version-management/git-workspace/default.nix
new file mode 100644
index 00000000000..6ccfafeb70e
--- /dev/null
+++ b/pkgs/applications/version-management/git-workspace/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, libiconv
+, Security
+, pkg-config
+, openssl
+, testers
+, git-workspace
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "git-workspace";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = "orf";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-rCy6+cjjFgcMqYn48Gfw+tTIMmsTD9lz8h14EfXWatI=";
+  };
+
+  cargoSha256 = "sha256-aO9DYD20KQL2cLWy3uIQLJ1oR4PHNbgZLYi/Y8O6UHk=";
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [ openssl ]
+    ++ lib.optionals stdenv.isDarwin [ libiconv Security ];
+
+  passthru.tests.version = testers.testVersion { package = git-workspace; };
+
+  meta = with lib; {
+    description = "Sync personal and work git repositories from multiple providers";
+    homepage = "https://github.com/orf/git-workspace";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ misuzu ];
+  };
+}