summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2017-01-02 17:18:09 +0100
committerMichael Raskin <7c6f434c@mail.ru>2017-01-02 20:18:47 +0100
commit11bfe018468af2e82b374b83e7c52536c24ce697 (patch)
treea3e68f57db63cc1f8a2c437ebd44b4b6bb2b6935 /pkgs/os-specific/linux
parent41dc1e5237dfef30b657f6d639bf155d6d588ab8 (diff)
downloadnixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar.gz
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar.bz2
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar.lz
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar.xz
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.tar.zst
nixpkgs-11bfe018468af2e82b374b83e7c52536c24ce697.zip
firejail: 0.9.42 -> 0.9.44.2
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/firejail/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/os-specific/linux/firejail/default.nix b/pkgs/os-specific/linux/firejail/default.nix
index 30fdbadd87b..6b3afc1d63c 100644
--- a/pkgs/os-specific/linux/firejail/default.nix
+++ b/pkgs/os-specific/linux/firejail/default.nix
@@ -3,11 +3,11 @@ let
   s = # Generated upstream information
   rec {
     baseName="firejail";
-    version="0.9.42";
+    version="0.9.44.2";
     name="${baseName}-${version}";
-    hash="0iwv97c0ygxrgxg997618a7cq3hl1l3b0njx7bqzv11vjzpcwfsg";
-    url="mirror://sourceforge/project/firejail/firejail/firejail-0.9.42.tar.xz";
-    sha256="0iwv97c0ygxrgxg997618a7cq3hl1l3b0njx7bqzv11vjzpcwfsg";
+    hash="0lc8vq6lj0669q4vx08m3dzqjayhl0cmm7n3qi4k18ys8ccyzbf5";
+    url="https://kent.dl.sourceforge.net/project/firejail/firejail/firejail-0.9.44.2.tar.xz";
+    sha256="0lc8vq6lj0669q4vx08m3dzqjayhl0cmm7n3qi4k18ys8ccyzbf5";
   };
   buildInputs = [
     which
@@ -24,8 +24,6 @@ stdenv.mkDerivation {
   preConfigure = ''
     sed -e 's@/bin/bash@${stdenv.shell}@g' -i $( grep -lr /bin/bash .)
     sed -e "s@/bin/cp@$(which cp)@g" -i $( grep -lr /bin/cp .)
-    sed -e '/void fs_var_run(/achar *vrcs = get_link("/var/run/current-system")\;' -i ./src/firejail/fs_var.c
-    sed -e '/ \/run/iif(vrcs!=NULL){symlink(vrcs, "/var/run/current-system")\;free(vrcs)\;}' -i ./src/firejail/fs_var.c
   '';
 
   preBuild = ''