about summary refs log tree commit diff
path: root/pkgs/development/tools/nc4nix
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2022-10-23 15:01:36 +0200
committerYt <happysalada@proton.me>2022-11-11 11:48:01 -0500
commit327c8622d1b54a2386bd1eda893c71bf3f4c8427 (patch)
tree47289478c8f787237369b71b6b56ca4c99c259aa /pkgs/development/tools/nc4nix
parent7a5f67056afd7036af3e4f8e3244cf9bc3aef591 (diff)
nc4nix: init at unstable-2022-08-06
Diffstat (limited to 'pkgs/development/tools/nc4nix')
-rw-r--r--pkgs/development/tools/nc4nix/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/tools/nc4nix/default.nix b/pkgs/development/tools/nc4nix/default.nix
new file mode 100644
index 0000000000000..11a9494c2a941
--- /dev/null
+++ b/pkgs/development/tools/nc4nix/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildGoModule
+, fetchFromGitLab
+}:
+
+buildGoModule rec {
+  pname = "nc4nix";
+  version = "unstable-2022-08-06";
+
+  src = fetchFromGitLab {
+    domain = "git.helsinki.tools";
+    owner = "helsinki-systems";
+    repo = "nc4nix";
+    rev = "91d92e8c339862fe81fb066fd370da7757042367";
+    sha256 = "sha256-8ggYOc+w3oiY2B0Ned5B26/ZNco2vCdvScC+Ms+gOWo=";
+  };
+
+  vendorSha256 = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M=";
+
+  meta = with lib; {
+    description = "Packaging helper for Nextcloud apps";
+    homepage = "https://git.helsinki.tools/helsinki-systems/nc4nix";
+    license = licenses.unfree;
+    maintainers = with maintainers; [ onny ];
+    platforms = platforms.linux;
+  };
+}
+