mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Merge pull request #12317 from sleep/fix/ranger-add-dependency-file
ranger: fix, added file as a runtime dependency
This commit is contained in:
commit
0aa8b6fd1c
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, python, w3m }:
|
||||
{ stdenv, fetchurl, buildPythonPackage, python, w3m, file }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "ranger-1.7.1";
|
||||
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
||||
sha256 = "11nznx2lqv884q9d2if63101prgnjlnan8pcwy550hji2qsn3c7q";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python.modules; [ curses ];
|
||||
propagatedBuildInputs = [ python.modules.curses file ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace ranger/ext/img_display.py \
|
||||
|
Loading…
Reference in New Issue
Block a user