{
stdenv,
pkgs,
...
}: let
in
stdenv.mkDerivation rec {
pname = "makeimg";
version = "0.14.0";
src = pkgs.fetchFromSourcehut {
owner = "~bitfehler";
repo = "makeimg";
tag = "v${version}";
hash = "sha256-cLCLCG0+ShFazuVBG9GcvVmQNJtuMkKdGEP3QNJPTAo=";
};
dontBuild = true;
installPhase = ''
install -Dm755 -t $out/bin makeimg
'';
}