dockutil: init at 2.0.5 (#155052)

This commit is contained in:
Thomas Boerger 2022-03-02 01:30:25 +01:00 committed by GitHub
parent 0c5696f9da
commit 80d6b6df01
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "dockutil";
version = "2.0.5";
src = fetchFromGitHub {
owner = "kcrawford";
repo = "dockutil";
rev = version;
sha256 = "sha256-8tDkueCTCtvxc7owp3K9Tsrn4hL79CM04zBNv7AcHgA=";
};
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
install -Dm755 scripts/dockutil -t $out/bin
runHook postInstall
'';
meta = with lib; {
description = "Tool for managing dock items";
homepage = "https://github.com/kcrawford/dockutil";
license = licenses.asl20;
maintainers = with maintainers; [ tboerger ];
platforms = platforms.darwin;
};
}

View file

@ -33016,6 +33016,8 @@ with pkgs;
dell-530cdn = callPackage ../misc/drivers/dell-530cdn {};
dockutil = callPackage ../os-specific/darwin/dockutil { };
dosbox = callPackage ../applications/emulators/dosbox { };
dosbox-staging = callPackage ../applications/emulators/dosbox-staging { };