Merge pull request #298618 from nadir-ishiguro/update-clifm
clifm: 1.17 -> 1.18
This commit is contained in:
commit
57e6b3a9e4
@ -1,22 +1,36 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, libcap, acl, file, readline, python3 }:
|
{
|
||||||
|
stdenv,
|
||||||
|
lib,
|
||||||
|
fetchFromGitHub,
|
||||||
|
libcap,
|
||||||
|
acl,
|
||||||
|
file,
|
||||||
|
readline,
|
||||||
|
python3,
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "clifm";
|
pname = "clifm";
|
||||||
version = "1.17";
|
version = "1.18";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "leo-arch";
|
owner = "leo-arch";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-plJ2iKloRGtBSa1upSo675bMj6qczR6TQ043UQboxQE=";
|
hash = "sha256-tgCGZCLCWcF7ktXqDHjoUkeVqxg6QVOkZb7pbk3nA+U=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libcap acl file readline python3];
|
buildInputs = [
|
||||||
|
libcap
|
||||||
|
acl
|
||||||
|
file
|
||||||
|
readline
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"DESTDIR=${placeholder "out"}"
|
"PREFIX=${placeholder "out"}"
|
||||||
"DATADIR=/share"
|
"DATADIR=${placeholder "out"}/share"
|
||||||
"PREFIX=/"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user