nixpkgs/pkgs/applications/misc/sfm/default.nix

28 lines
708 B
Nix
Raw Normal View History

2021-06-30 22:29:11 +00:00
{ lib, stdenv, fetchFromGitHub, writeText, conf ? null }:
2021-06-01 12:26:42 +00:00
stdenv.mkDerivation rec {
pname = "sfm";
2021-06-27 21:15:14 +00:00
version = "0.2";
2021-06-01 12:26:42 +00:00
src = fetchFromGitHub {
owner = "afify";
repo = pname;
rev = "v${version}";
2021-06-27 21:15:14 +00:00
hash = "sha256-DwXKrSqcebNI5N9REXyMV16W2kr72IH9+sKSVehc5zw=";
2021-06-01 12:26:42 +00:00
};
2021-06-30 22:29:11 +00:00
configFile = lib.optionalString (conf!=null) (writeText "config.def.h" conf);
2021-06-01 12:26:42 +00:00
postPatch = lib.optionalString (conf!=null) "cp ${configFile} config.def.h";
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Simple file manager";
homepage = "https://github.com/afify/sfm";
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ sikmir ];
};
}