clifm: 1.17 -> 1.18

Changelog: https://github.com/leo-arch/clifm/releases/tag/v1.18
This commit is contained in:
Nadir Ishiguro 2024-03-24 13:36:55 +01:00
parent ecd15a9993
commit 49d9251c1a
No known key found for this signature in database
1 changed files with 4 additions and 5 deletions

View File

@ -2,21 +2,20 @@
stdenv.mkDerivation rec {
pname = "clifm";
version = "1.17";
version = "1.18";
src = fetchFromGitHub {
owner = "leo-arch";
repo = pname;
rev = "v${version}";
hash = "sha256-plJ2iKloRGtBSa1upSo675bMj6qczR6TQ043UQboxQE=";
hash = "sha256-tgCGZCLCWcF7ktXqDHjoUkeVqxg6QVOkZb7pbk3nA+U=";
};
buildInputs = [ libcap acl file readline python3];
makeFlags = [
"DESTDIR=${placeholder "out"}"
"DATADIR=/share"
"PREFIX=/"
"PREFIX=${placeholder "out"}"
"DATADIR=${placeholder "out"}/share"
];
enableParallelBuilding = true;