about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/portal/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/portal/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/portal/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/misc/portal/default.nix b/nixpkgs/pkgs/tools/misc/portal/default.nix
new file mode 100644
index 000000000000..978d3632da1f
--- /dev/null
+++ b/nixpkgs/pkgs/tools/misc/portal/default.nix
@@ -0,0 +1,26 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "portal";
+  version = "1.2.3";
+
+  src = fetchFromGitHub {
+    owner = "SpatiumPortae";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-hGB82a2WirUL1Tph6EuoITOQGYA0Lo4zOeKPC46B5Qk=";
+  };
+
+  vendorHash = "sha256-SbNFi5DE3zhTUw0rsX6n+dpYcdDsaDh+zVUrfxgo/4g=";
+  subPackages = [ "cmd/portal/" ];
+
+  ldflags = [ "-s -X main.version=${version}" ]; # from: https://github.com/SpatiumPortae/portal/blob/master/Makefile#L3
+
+  meta = with lib; {
+    description = "A quick and easy command-line file transfer utility from any computer to another";
+    homepage = "https://github.com/SpatiumPortae/portal";
+    changelog = "https://github.com/SpatiumPortae/portal/tag/v${version}";
+    license = licenses.mit;
+    maintainers = with maintainers; [ tennox ];
+  };
+}