nc4nix: init at unstable-2022-08-06

This commit is contained in:
Jonas Heinrich 2022-10-23 15:01:36 +02:00 committed by Yt
parent 7a5f67056a
commit 327c8622d1
2 changed files with 30 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -30947,6 +30947,8 @@ with pkgs;
navipowm = callPackage ../applications/misc/navipowm { };
nc4nix = callPackage ../development/tools/nc4nix { };
netbeans = callPackage ../applications/editors/netbeans {
jdk = jdk17;
};