2016-02-14 13:49:27 +00:00
|
|
|
{stdenv, fetchurl, which}:
|
2014-08-17 22:18:20 +00:00
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="firejail";
|
2018-09-20 21:31:57 +00:00
|
|
|
version="0.9.56";
|
2014-08-17 22:18:20 +00:00
|
|
|
name="${baseName}-${version}";
|
2018-09-20 21:31:57 +00:00
|
|
|
hash="0b9ig0a91i19sfm94a6yl510pm4dlidmani3fsnb7vh0qy3l9121";
|
|
|
|
url="https://vorboss.dl.sourceforge.net/project/firejail/firejail/firejail-0.9.56.tar.xz";
|
|
|
|
sha256="0b9ig0a91i19sfm94a6yl510pm4dlidmani3fsnb7vh0qy3l9121";
|
2014-08-17 22:18:20 +00:00
|
|
|
};
|
|
|
|
buildInputs = [
|
2016-02-14 13:49:27 +00:00
|
|
|
which
|
2014-08-17 22:18:20 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
|
|
|
inherit buildInputs;
|
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
2016-08-10 17:34:58 +00:00
|
|
|
name = "${s.name}.tar.bz2";
|
2014-08-17 22:18:20 +00:00
|
|
|
};
|
|
|
|
|
2017-07-25 11:25:40 +00:00
|
|
|
prePatch = ''
|
|
|
|
# Allow whitelisting ~/.nix-profile
|
|
|
|
substituteInPlace etc/firejail.config --replace \
|
|
|
|
'# follow-symlink-as-user yes' \
|
|
|
|
'follow-symlink-as-user no'
|
|
|
|
'';
|
|
|
|
|
2014-08-17 22:18:20 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e 's@/bin/bash@${stdenv.shell}@g' -i $( grep -lr /bin/bash .)
|
2016-02-14 13:49:27 +00:00
|
|
|
sed -e "s@/bin/cp@$(which cp)@g" -i $( grep -lr /bin/cp .)
|
2014-08-17 22:18:20 +00:00
|
|
|
'';
|
|
|
|
|
2014-11-02 19:59:32 +00:00
|
|
|
preBuild = ''
|
2017-06-28 19:29:17 +00:00
|
|
|
sed -e "s@/etc/@$out/etc/@g" -e "/chmod u+s/d" -i Makefile
|
2014-11-02 19:59:32 +00:00
|
|
|
'';
|
|
|
|
|
2014-08-17 22:18:20 +00:00
|
|
|
meta = {
|
|
|
|
inherit (s) version;
|
|
|
|
description = ''Namespace-based sandboxing tool for Linux'';
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus ;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://l3net.wordpress.com/projects/firejail/;
|
2014-08-17 22:18:20 +00:00
|
|
|
downloadPage = "http://sourceforge.net/projects/firejail/files/firejail/";
|
|
|
|
};
|
|
|
|
}
|