depot/third_party/nixpkgs/pkgs/development/tools/initool/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

42 lines
820 B
Nix

{ stdenv
, mlton
, lib
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "initool";
version = "0.18.0";
src = fetchFromGitHub {
owner = "dbohdan";
repo = pname;
rev = "v${version}";
hash = "sha256-f426yzSYcrhd0MOZc5vDg4T4m/RdWzTz/KPzb65h03U=";
};
nativeBuildInputs = [ mlton ];
doCheck = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp initool $out/bin/
runHook postInstall
'';
meta = with lib; {
inherit (mlton.meta) platforms;
description = "Manipulate INI files from the command line";
mainProgram = "initool";
homepage = "https://github.com/dbohdan/initool";
license = licenses.mit;
maintainers = with maintainers; [ e1mo ];
changelog = "https://github.com/dbohdan/initool/releases/tag/v${version}";
};
}