nixpkgs/pkgs/applications/file-managers/cfm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
603 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
}:
2021-11-23 03:26:08 +00:00
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; {
homepage = "https://github.com/willeccles/cfm";
2021-11-23 03:26:08 +00:00
description = "Simple and fast TUI file manager with no dependencies";
license = licenses.mpl20;
maintainers = with maintainers; [ lom ];
2021-11-23 03:26:08 +00:00
platforms = platforms.all;
};
}