mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ sudo, coreutils, systemd, cryptsetup
|
|
, mount, umount
|
|
, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "interlock-${version}";
|
|
version = "2016.04.13";
|
|
rev = "v${version}";
|
|
|
|
goPackagePath = "github.com/inversepath/interlock";
|
|
|
|
subPackages = [ "./cmd/interlock" ];
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "inversepath";
|
|
repo = "interlock";
|
|
sha256 = "06aqx3jy744yx29xyg8ips0dw16186hfqbxdv3hfrmwxmaxhl4lz";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
nativeBuildInputs = [ sudo ];
|
|
buildFlags = [ "-tags textsecure" ];
|
|
postPatch = ''
|
|
grep -lr '/s\?bin/' | xargs sed -i \
|
|
-e 's|/bin/mount|${mount}/bin/mount|' \
|
|
-e 's|/bin/umount|${umount}/bin/umount|' \
|
|
-e 's|/bin/cp|${coreutils}/bin/cp|' \
|
|
-e 's|/bin/mv|${coreutils}/bin/mv|' \
|
|
-e 's|/bin/chown|${coreutils}/bin/chown|' \
|
|
-e 's|/bin/date|${coreutils}/bin/date|' \
|
|
-e 's|/sbin/poweroff|${systemd}/sbin/poweroff|' \
|
|
-e 's|/usr/bin/sudo|/run/wrappers/bin/sudo|' \
|
|
-e 's|/sbin/cryptsetup|${cryptsetup}/bin/cryptsetup|'
|
|
'';
|
|
}
|