2021-05-17 14:13:03 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which, zstd, pbzip2 }:
|
2011-02-01 23:24:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-01-02 12:08:18 +00:00
|
|
|
version = "2.4.5";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "makeself";
|
2016-06-14 19:17:29 +00:00
|
|
|
|
2017-10-23 22:54:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "megastep";
|
|
|
|
repo = "makeself";
|
|
|
|
rev = "release-${version}";
|
2020-04-27 23:05:18 +00:00
|
|
|
fetchSubmodules = true;
|
2022-01-02 12:08:18 +00:00
|
|
|
sha256 = "sha256-15lUtErGsbXF2Gn0f0rvA18mMuVMmkKrGO2poeYZU9g=";
|
2011-02-01 23:24:13 +00:00
|
|
|
};
|
2016-06-14 19:17:29 +00:00
|
|
|
|
2021-07-05 16:27:05 +00:00
|
|
|
postPatch = "patchShebangs test";
|
2018-08-17 23:59:23 +00:00
|
|
|
|
2021-07-06 08:10:09 +00:00
|
|
|
# Issue #110149: our default /bin/sh apparently has 32-bit math only
|
|
|
|
# (attribute busybox-sandbox-shell), and that causes problems
|
|
|
|
# when running these tests inside build, based on free disk space.
|
|
|
|
doCheck = false;
|
2020-04-27 23:05:18 +00:00
|
|
|
checkTarget = "test";
|
2021-05-17 14:13:03 +00:00
|
|
|
checkInputs = [ which zstd pbzip2 ];
|
2016-06-14 19:17:29 +00:00
|
|
|
|
2011-02-01 23:24:13 +00:00
|
|
|
installPhase = ''
|
2019-08-15 12:41:18 +00:00
|
|
|
mkdir -p $out/{bin,share/{${pname}-${version},man/man1}}
|
|
|
|
cp makeself.lsm README.md $out/share/${pname}-${version}
|
2016-06-14 19:17:29 +00:00
|
|
|
cp makeself.sh $out/bin/makeself
|
|
|
|
cp makeself.1 $out/share/man/man1/
|
2019-08-15 12:41:18 +00:00
|
|
|
cp makeself-header.sh $out/share/${pname}-${version}
|
2011-02-01 23:24:13 +00:00
|
|
|
'';
|
2016-06-14 19:17:29 +00:00
|
|
|
|
2020-04-27 23:05:18 +00:00
|
|
|
fixupPhase = ''
|
|
|
|
sed -e "s|^HEADER=.*|HEADER=$out/share/${pname}-${version}/makeself-header.sh|" -i $out/bin/makeself
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-07-05 16:27:05 +00:00
|
|
|
homepage = "https://makeself.io";
|
2011-02-01 23:24:13 +00:00
|
|
|
description = "Utility to create self-extracting packages";
|
2014-06-30 14:10:04 +00:00
|
|
|
license = licenses.gpl2;
|
2014-07-22 21:45:18 +00:00
|
|
|
maintainers = [ maintainers.wmertens ];
|
2014-06-30 14:10:04 +00:00
|
|
|
platforms = platforms.all;
|
2011-02-01 23:24:13 +00:00
|
|
|
};
|
|
|
|
}
|