initool: init at 0.10.0

This commit is contained in:
Moritz 'e1mo' Fromm 2023-02-04 17:46:05 +01:00
parent c0c4f25067
commit 4bb112a84a
No known key found for this signature in database
GPG key ID: 1D5D79A439E787F1
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv
, mlton
, lib
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "initool";
version = "0.10.0";
src = fetchFromGitHub {
owner = "dbohdan";
repo = pname;
rev = "v${version}";
hash = "sha256-pszlP9gy1zjQjNNr0L1NY0XViejUUuvUZH6JHtUxdJI=";
};
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";
homepage = "https://github.com/dbohdan/initool";
license = licenses.mit;
maintainers = with maintainers; [ e1mo ];
changelog = "https://github.com/dbohdan/initool/releases/tag/v${version}";
};
}

View file

@ -20416,6 +20416,8 @@ with pkgs;
iniparser = callPackage ../development/libraries/iniparser { };
initool = callPackage ../development/tools/initool { };
intel-gmmlib = callPackage ../development/libraries/intel-gmmlib { };
intel-media-driver = callPackage ../development/libraries/intel-media-driver { };