Unverified Commit 49d9251c authored by Nadir Ishiguro's avatar Nadir Ishiguro
Browse files
parent ecd15a99
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -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;