nixpkgs/pkgs/os-specific/linux/firejail/default.nix

50 lines
1.4 KiB
Nix
Raw Normal View History

2016-02-14 13:49:27 +00:00
{stdenv, fetchurl, which}:
let
s = # Generated upstream information
rec {
baseName="firejail";
2017-07-25 11:25:40 +00:00
version="0.9.48";
name="${baseName}-${version}";
2017-07-25 11:25:40 +00:00
hash="02a74nx8p2gbpd6ffnr52p02pxxllw3yy5fy4083a77r3wia8zb3";
url="https://vorboss.dl.sourceforge.net/project/firejail/firejail/firejail-0.9.48.tar.xz";
sha256="02a74nx8p2gbpd6ffnr52p02pxxllw3yy5fy4083a77r3wia8zb3";
};
buildInputs = [
2016-02-14 13:49:27 +00:00
which
];
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";
};
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'
'';
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-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
'';
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;
homepage = "http://l3net.wordpress.com/projects/firejail/";
downloadPage = "http://sourceforge.net/projects/firejail/files/firejail/";
};
}