2021-05-17 07:13:03 -07:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which, zstd, pbzip2 }:
|
2011-02-01 15:24:13 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-27 16:05:18 -07:00
|
|
|
version = "2.4.2";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "makeself";
|
2016-06-14 12:17:29 -07:00
|
|
|
|
2017-10-23 15:54:26 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "megastep";
|
|
|
|
repo = "makeself";
|
|
|
|
rev = "release-${version}";
|
2020-04-27 16:05:18 -07:00
|
|
|
fetchSubmodules = true;
|
|
|
|
sha256 = "07cq7q71bv3fwddkp2863ylry2ivds00f8sjy8npjpdbkailxm21";
|
2011-02-01 15:24:13 -08:00
|
|
|
};
|
2016-06-14 12:17:29 -07:00
|
|
|
|
2021-07-06 12:07:32 -07:00
|
|
|
postPatch = "patchShebangs test";
|
2018-08-17 16:59:23 -07:00
|
|
|
|
2021-07-06 12:07:32 -07: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 16:05:18 -07:00
|
|
|
checkTarget = "test";
|
2021-05-17 07:13:03 -07:00
|
|
|
checkInputs = [ which zstd pbzip2 ];
|
2016-06-14 12:17:29 -07:00
|
|
|
|
2011-02-01 15:24:13 -08:00
|
|
|
installPhase = ''
|
2019-08-15 05:41:18 -07:00
|
|
|
mkdir -p $out/{bin,share/{${pname}-${version},man/man1}}
|
|
|
|
cp makeself.lsm README.md $out/share/${pname}-${version}
|
2016-06-14 12:17:29 -07:00
|
|
|
cp makeself.sh $out/bin/makeself
|
|
|
|
cp makeself.1 $out/share/man/man1/
|
2019-08-15 05:41:18 -07:00
|
|
|
cp makeself-header.sh $out/share/${pname}-${version}
|
2011-02-01 15:24:13 -08:00
|
|
|
'';
|
2016-06-14 12:17:29 -07:00
|
|
|
|
2020-04-27 16:05:18 -07:00
|
|
|
fixupPhase = ''
|
|
|
|
sed -e "s|^HEADER=.*|HEADER=$out/share/${pname}-${version}/makeself-header.sh|" -i $out/bin/makeself
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2021-07-06 12:07:32 -07:00
|
|
|
homepage = "https://makeself.io";
|
2011-02-01 15:24:13 -08:00
|
|
|
description = "Utility to create self-extracting packages";
|
2014-06-30 07:10:04 -07:00
|
|
|
license = licenses.gpl2;
|
2014-07-22 14:45:18 -07:00
|
|
|
maintainers = [ maintainers.wmertens ];
|
2014-06-30 07:10:04 -07:00
|
|
|
platforms = platforms.all;
|
2011-02-01 15:24:13 -08:00
|
|
|
};
|
|
|
|
}
|