mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
42 lines
1.2 KiB
Nix
42 lines
1.2 KiB
Nix
{ lib, fetchFromGitHub, jre_headless, makeWrapper, maven }:
|
|
|
|
maven.buildMavenPackage rec {
|
|
pname = "ktfmt";
|
|
version = "0.47";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "ktfmt";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-vdvKHTTD84OAQacv/VE/5BxYdW4n3bxPUHF2MdH+sQQ=";
|
|
};
|
|
|
|
patches = [ ./pin-default-maven-plugin-versions.patch ];
|
|
|
|
mvnHash = "sha256-iw28HS0WMFC9BKQKr0v33D77rMQeIMKjXduqPcYU1XA=";
|
|
|
|
mvnParameters = "-Dproject.build.outputTimestamp=1980-01-01T00:00:02Z";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm644 core/target/ktfmt-*-jar-with-dependencies.jar $out/share/ktfmt/ktfmt.jar
|
|
|
|
makeWrapper ${jre_headless}/bin/java $out/bin/ktfmt \
|
|
--add-flags "-jar $out/share/ktfmt/ktfmt.jar"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A program that reformats Kotlin source code to comply with the common community standard for Kotlin code conventions.";
|
|
homepage = "https://github.com/facebook/ktfmt";
|
|
license = licenses.asl20;
|
|
mainProgram = "ktfmt";
|
|
maintainers = with maintainers; [ ghostbuster91 ];
|
|
inherit (jre_headless.meta) platforms;
|
|
};
|
|
}
|