mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
shfm: init at 0.4.2
This commit is contained in:
parent
67c4ab77be
commit
6ab8cd7a22
38
pkgs/applications/misc/shfm/default.nix
Normal file
38
pkgs/applications/misc/shfm/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "shfm";
|
||||
version = "0.4.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dylanaraps";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-ilVrUFfyzOZgjbBTqlHA9hLaTHw1xHFo1Y/tjXygNEs=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./shfm
|
||||
'';
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -D shfm --target-directory $out/bin/
|
||||
install -D README --target-directory $out/share/doc/${pname}/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dylanaraps/shfm";
|
||||
description = "POSIX-shell based file manager";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -6958,6 +6958,7 @@ in
|
|||
|
||||
nnn = callPackage ../applications/misc/nnn { };
|
||||
|
||||
shfm = callPackage ../applications/misc/shfm { };
|
||||
|
||||
noise-repellent = callPackage ../applications/audio/noise-repellent { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue