shfm: init at 0.4.2

+39
+38
pkgs/applications/misc/shfm/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "shfm"; 8 + version = "0.4.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "dylanaraps"; 12 + repo = pname; 13 + rev = version; 14 + hash = "sha256-ilVrUFfyzOZgjbBTqlHA9hLaTHw1xHFo1Y/tjXygNEs="; 15 + }; 16 + 17 + postPatch = '' 18 + patchShebangs ./shfm 19 + ''; 20 + 21 + dontConfigure = true; 22 + dontBuild = true; 23 + 24 + installPhase = '' 25 + runHook preInstall 26 + install -D shfm --target-directory $out/bin/ 27 + install -D README --target-directory $out/share/doc/${pname}/ 28 + runHook postInstall 29 + ''; 30 + 31 + meta = with lib; { 32 + homepage = "https://github.com/dylanaraps/shfm"; 33 + description = "POSIX-shell based file manager"; 34 + license = licenses.mit; 35 + maintainers = with maintainers; [ AndersonTorres ]; 36 + platforms = platforms.all; 37 + }; 38 + }
+1
pkgs/top-level/all-packages.nix
··· 6958 6958 6959 6959 nnn = callPackage ../applications/misc/nnn { }; 6960 6960 6961 + shfm = callPackage ../applications/misc/shfm { }; 6961 6962 6962 6963 noise-repellent = callPackage ../applications/audio/noise-repellent { }; 6963 6964