mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
730ac18ebe
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ktlint/versions
39 lines
907 B
Nix
39 lines
907 B
Nix
{ stdenv, fetchurl, makeWrapper, jre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ktlint-${version}";
|
|
version = "0.34.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/shyiko/ktlint/releases/download/${version}/ktlint";
|
|
sha256 = "1mry999aqmbljp2ybkgf9hps8z4aa254b1bsivi559gzsvdkmqh7";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
propagatedBuildInputs = [ jre ];
|
|
|
|
unpackCmd = ''
|
|
mkdir -p ${name}
|
|
cp $curSrc ${name}/ktlint
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv ktlint $out/bin/ktlint
|
|
chmod +x $out/bin/ktlint
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/ktlint --prefix PATH : "${jre}/bin"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "An anti-bikeshedding Kotlin linter with built-in formatter";
|
|
homepage = https://ktlint.github.io/;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
};
|
|
}
|