cfm: init at 0.6.6
This commit is contained in:
parent
20a166d260
commit
c18638dc95
2 changed files with 28 additions and 0 deletions
26
pkgs/applications/misc/cfm/default.nix
Normal file
26
pkgs/applications/misc/cfm/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cfm";
|
||||
version = "0.6.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "willeccles";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-uXL0RO9P+NYSZ0xCv91KzjHOJJI500YUT8IJkFS86pE=";
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"DESTDIR=${placeholder "out"}"
|
||||
"PREFIX="
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple and fast TUI file manager with no dependencies";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ legendofmiracles ];
|
||||
homepage = "https://github.com/willeccles/cfm";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -2429,6 +2429,8 @@ with pkgs;
|
|||
|
||||
cfdyndns = callPackage ../applications/networking/dyndns/cfdyndns { };
|
||||
|
||||
cfm = callPackage ../applications/misc/cfm { };
|
||||
|
||||
charliecloud = callPackage ../applications/virtualization/charliecloud { };
|
||||
|
||||
chelf = callPackage ../tools/misc/chelf { };
|
||||
|
|
Loading…
Reference in a new issue