nixpkgs/pkgs/development/tools/nc4nix/default.nix
2023-07-21 19:27:11 +02:00

60 lines
1.7 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, nix
, makeWrapper
, fetchpatch
}:
buildGoModule {
pname = "nc4nix";
version = "unstable-2023-06-06";
src = fetchFromGitHub {
owner = "helsinki-systems";
repo = "nc4nix";
rev = "3e015450726533770fd00e2771530cbe90f40517";
sha256 = "sha256-i3lx5Q+EswtimdRMZ0OPMWh01kBK9q+UI1pY6j/ZhuY=";
};
patches = [
# Switch hash calculation method
# https://github.com/helsinki-systems/nc4nix/pull/3
(fetchpatch {
url = "https://github.com/helsinki-systems/nc4nix/commit/a7bca4793cc12e87d381f12f6f8c00ae2ca02893.patch";
sha256 = "sha256-0JxyhSQLtlgLtsMv82wMjQHGdmOoQ2dcPPNAw2cFByE=";
name = "switch_hash_calculation_method.patch";
})
# Fix invalid entries (pre-releases of apps are not to be taken into account,
# but if only pre-releases are compatible with a given Nextcloud version,
# invalid entries are generated)
(fetchpatch {
url = "https://github.com/helsinki-systems/nc4nix/commit/c48131b5ca382585fd3294d51d59acc1e92fadb1.patch";
sha256 = "sha256-/zc3Smjd6CksC5wUvoB6uAyTzPcIgqimb+zASIuTft0=";
excludes = [ "25.json" "26.json" "27.json" ];
})
];
vendorSha256 = "sha256-uhINWxFny/OY7M2vV3ehFzP90J6Z8cn5IZHWOuEg91M=";
nativeBuildInputs = [
makeWrapper
];
postInstall = ''
# Depends on nix-prefetch-url
wrapProgram $out/bin/nc4nix \
--prefix PATH : ${lib.makeBinPath [ nix ]}
'';
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;
};
}