From 8c9949d23abc38104ab3a081035b2782ee73ef10 Mon Sep 17 00:00:00 2001 From: legendofmiracles Date: Sat, 18 Dec 2021 23:14:11 -0600 Subject: [PATCH] clifm: 1.1 -> 1.3 --- pkgs/applications/misc/clifm/default.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/misc/clifm/default.nix b/pkgs/applications/misc/clifm/default.nix index 7fc130700aa9..20c7497e8695 100644 --- a/pkgs/applications/misc/clifm/default.nix +++ b/pkgs/applications/misc/clifm/default.nix @@ -2,33 +2,30 @@ stdenv.mkDerivation rec { pname = "clifm"; - version = "1.1"; + version = "1.3"; src = fetchFromGitHub { owner = "leo-arch"; repo = pname; rev = "v${version}"; - sha256 = "0mf9lrq0l532vyf4ycsikrw8imn4gkavyn3cr42nhjsr1drygrp8"; + sha256 = "sha256-nYBGM3gUj1NGrxNLt0xpNl00cgS2Ecs3kYjZapiJT48="; }; buildInputs = [ libcap acl file readline ]; makeFlags = [ - "INSTALLPREFIX=${placeholder "out"}/bin" - "DESKTOPPREFIX=${placeholder "out"}/share" + "DESTDIR=${placeholder "out"}" + "DATADIR=/share" + "PREFIX=/" ]; - preInstall = '' - mkdir -p $out/bin $out/share - ''; - enableParallelBuilding = true; meta = with lib; { homepage = "https://github.com/leo-arch/clifm"; description = "CliFM is a CLI-based, shell-like, and non-curses terminal file manager written in C: simple, fast, extensible, and lightweight as hell"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ vonfry ]; + maintainers = with maintainers; [ ]; platforms = platforms.unix; }; }