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