aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2020-12-02 21:08:12 +0100
committerGitHub <noreply@github.com>2020-12-02 21:08:12 +0100
commit71baee273c9dbedab47627f8ead825ce756867cf (patch)
treed101fd5109a98997739cb1a6cd56ddd33f88dcaf /pkgs/tools
parent7d7768ab7eae7ae19391ca95d4dce3723b0598da (diff)
parentb8ad3d4e9e89c162e2520f4ff466f092899f3346 (diff)
Merge pull request #105643 from IvarWithoutBones/pbgopy-0.1.1
pbgopy: init at 0.1.1
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/text/pbgopy/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/text/pbgopy/default.nix b/pkgs/tools/text/pbgopy/default.nix
new file mode 100644
index 000000000000..3972d3dc9bd4
--- /dev/null
+++ b/pkgs/tools/text/pbgopy/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "pbgopy";
+ version = "0.1.1";
+
+ src = fetchFromGitHub {
+ owner = "nakabonne";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "17rk15hs7kg9m1vphh1gjny7sqnk80qw61jn8qyxcmw2n55rkmfp";
+ };
+
+ vendorSha256 = "1ak3hd979395grbns9p5sw5f45plcqq6vg7j7v8n7xqc20s2l8m9";
+
+ meta = with stdenv.lib; {
+ description = "Copy and paste between devices";
+ homepage = "https://github.com/nakabonne/pbgopy";
+ license = licenses.mit;
+ maintainers = [ maintainers.ivar ];
+ };
+}