about summary refs log tree commit diff
path: root/pkgs/by-name/nc
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2024-03-01 11:42:24 +0100
committerJonas Heinrich <onny@project-insanity.org>2024-03-04 15:17:52 +0100
commit5b8aee4f0ceedfeae3f26cb85d8a5ee626c4e971 (patch)
tree36b25ed936db2307dc6b5a5f6ce78c0fc870784e /pkgs/by-name/nc
parent1dfd9a62f32d09b918744985efb1b18e542f30d9 (diff)
nc4nix: unstable-2023-11-06 -> 0-unstable-2024-03-01
Diffstat (limited to 'pkgs/by-name/nc')
-rw-r--r--pkgs/by-name/nc/nc4nix/package.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/by-name/nc/nc4nix/package.nix b/pkgs/by-name/nc/nc4nix/package.nix
new file mode 100644
index 0000000000000..4593e82f24ae9
--- /dev/null
+++ b/pkgs/by-name/nc/nc4nix/package.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule {
+  pname = "nc4nix";
+  version = "0-unstable-2024-03-01";
+
+  src = fetchFromGitHub {
+    owner = "helsinki-systems";
+    repo = "nc4nix";
+    rev = "ba37674c0dddf93e0a011dace92ec7f0ec834765";
+    hash = "sha256-k12eeP2gojLCsJH1GGuiTmxz3ViPc0+oFBuptyh42Bw=";
+  };
+
+  vendorHash = "sha256-ZXl4kMDY9ADkHUcLsl3uNpyErMzbgS+J65+uUeIXpSE=";
+
+  meta = with lib; {
+    description = "Packaging helper for Nextcloud apps";
+    homepage = "https://github.com/helsinki-systems/nc4nix";
+    license = licenses.mit;
+    maintainers = with maintainers; [ onny ];
+    platforms = platforms.linux;
+  };
+}
+