exe2hex: init at 1.5.2-unstable-2020-04-27
This commit is contained in:
parent
7774ef530f
commit
e4391a5d29
40
pkgs/by-name/ex/exe2hex/package.nix
Normal file
40
pkgs/by-name/ex/exe2hex/package.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, python3Packages
|
||||
, expect
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "exe2hex";
|
||||
version = "1.5.2-unstable-2020-04-27";
|
||||
pyproject = false;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "g0tmi1k";
|
||||
repo = "exe2hex";
|
||||
rev = "e563b353306a0f34d96150b8992f543931f907ea";
|
||||
hash = "sha256-wriB1k45QWNCIsSb30Z3IilTGZqnc+X1+qkRrxgDxzU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
expect
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace exe2hex.py \
|
||||
--replace-fail "/usr/bin/expect" "${lib.getExe expect}"
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
install -Dm 555 exe2hex.py $out/bin/exe2hex
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Inline file transfer using in-built Windows tools";
|
||||
homepage = "https://github.com/g0tmi1k/exe2hex";
|
||||
mainProgram = "exe2hex";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ d3vil0p3r ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user