tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ibus-table-others: use mktemp for temporary directory
Thomas Tuegel
10 years ago
e559c3a7
edad1786
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
inputmethods
ibus-engines
ibus-table-others
default.nix
+2
-2
pkgs/tools/inputmethods/ibus-engines/ibus-table-others/default.nix
···
12
buildInputs = [ ibus ibus-table pkgconfig python3 ];
13
14
preBuild = ''
15
-
export HOME=/tmp/ibus-table-others
16
'';
17
18
postFixup = ''
19
-
rm -rf /tmp/ibus-table-others
20
'';
21
22
meta = with stdenv.lib; {
···
12
buildInputs = [ ibus ibus-table pkgconfig python3 ];
13
14
preBuild = ''
15
+
export HOME=$(mktemp -d)/ibus-table-others
16
'';
17
18
postFixup = ''
19
+
rm -rf $HOME
20
'';
21
22
meta = with stdenv.lib; {