nixpkgs/pkgs/applications/virtualization/singularity/default.nix

64 lines
1.7 KiB
Nix
Raw Normal View History

2016-11-14 01:26:59 +00:00
{ stdenv
, fetchFromGitHub
2017-11-07 03:47:20 +00:00
, autoreconfHook
, gnutar
, which
, gnugrep
, coreutils
, python
, e2fsprogs
, makeWrapper
, squashfsTools
, gzip
, gnused
, curl
, utillinux
2018-05-08 08:40:10 +00:00
, libarchive
, file
2017-11-07 03:47:20 +00:00
}:
2016-11-14 01:26:59 +00:00
stdenv.mkDerivation rec {
name = "singularity-${version}";
version = "2.6.0";
2017-11-07 03:47:20 +00:00
enableParallelBuilding = true;
patches = [ ./env.patch ];
preConfigure = ''
sed -i 's/-static//g' src/Makefile.am
patchShebangs .
'';
2018-07-25 21:44:21 +00:00
configureFlags = [ "--localstatedir=/var" ];
2018-03-12 04:13:31 +00:00
installFlags = "CONTAINER_MOUNTDIR=dummy CONTAINER_FINALDIR=dummy CONTAINER_OVERLAY=dummy SESSIONDIR=dummy";
2017-11-07 03:47:20 +00:00
fixupPhase = ''
patchShebangs $out
for f in $out/libexec/singularity/helpers/help.sh $out/libexec/singularity/cli/*.exec $out/libexec/singularity/bootstrap-scripts/*.sh ; do
chmod a+x $f
sed -i 's| /sbin/| |g' $f
sed -i 's| /bin/bash| ${stdenv.shell}|g' $f
wrapProgram $f --prefix PATH : ${stdenv.lib.makeBinPath buildInputs}
done
'';
2016-11-14 01:26:59 +00:00
src = fetchFromGitHub {
owner = "singularityware";
repo = "singularity";
rev = version;
sha256 = "0bi7acgppbkfbra8r29s1ldq02lazdww0z2h1rfvv8spr8dzzi94";
2016-11-14 01:26:59 +00:00
};
2017-11-07 03:47:20 +00:00
nativeBuildInputs = [ autoreconfHook makeWrapper ];
buildInputs = [ coreutils gnugrep python e2fsprogs which gnutar squashfsTools gzip gnused curl utillinux libarchive file ];
2016-11-14 01:26:59 +00:00
meta = with stdenv.lib; {
homepage = http://singularity.lbl.gov/;
description = "Designed around the notion of extreme mobility of compute and reproducible science, Singularity enables users to have full control of their operating system environment";
license = "BSD license with 2 modifications";
platforms = platforms.linux;
maintainers = [ maintainers.jbedo ];
};
}