mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
ecryptfs 104 -> 106
This commit is contained in:
parent
e07ea5cf77
commit
8f7f2feb1d
@ -1,16 +1,17 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, perl, utillinux, keyutils, nss, nspr, python, pam
|
{ stdenv, fetchurl, pkgconfig, perl, utillinux, keyutils, nss, nspr, python, pam
|
||||||
, intltool, makeWrapper, coreutils, bash, gettext, cryptsetup, lvm2, rsync, which }:
|
, intltool, makeWrapper, coreutils, bash, gettext, cryptsetup, lvm2, rsync, which }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "ecryptfs-104";
|
name = "ecryptfs-${version}";
|
||||||
|
version = "106";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://launchpad.net/ecryptfs/trunk/104/+download/ecryptfs-utils_104.orig.tar.gz;
|
url = "http://launchpad.net/ecryptfs/trunk/${version}/+download/ecryptfs-utils_${version}.orig.tar.gz";
|
||||||
sha256 = "0f3lzpjw97vcdqzzgii03j3knd6pgwn1y0lpaaf46iidaiv0282a";
|
sha256 = "1d5nlzcbl8ch639zi3lq6d14gkk4964j6dqhfs87i67867fhlghp";
|
||||||
};
|
};
|
||||||
|
|
||||||
#TODO: replace wrapperDir below with from <nixos> config.security.wrapperDir;
|
#TODO: replace wrapperDir below with from <nixos> config.security.wrapperDir;
|
||||||
preConfigure = ''
|
postPatch = ''
|
||||||
FILES="$(grep -r '/bin/sh' src/utils -l; find src -name \*.c)"
|
FILES="$(grep -r '/bin/sh' src/utils -l; find src -name \*.c)"
|
||||||
for file in $FILES; do
|
for file in $FILES; do
|
||||||
substituteInPlace "$file" \
|
substituteInPlace "$file" \
|
||||||
|
Loading…
Reference in New Issue
Block a user