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

28 lines
710 B
Nix
Raw Normal View History

2021-07-01 01:29:11 +03:00
{ lib, stdenv, fetchFromGitHub, writeText, conf ? null }:
2021-06-01 15:26:42 +03:00
stdenv.mkDerivation rec {
pname = "sfm";
2021-08-04 11:43:51 +03:00
version = "0.3.1";
2021-06-01 15:26:42 +03:00
src = fetchFromGitHub {
owner = "afify";
repo = pname;
rev = "v${version}";
2021-08-04 11:43:51 +03:00
hash = "sha256-NmafUezwKK9bYPAWDNhegyjqkb4GY/i1WEtQ9puIaig=";
2021-06-01 15:26:42 +03:00
};
2021-07-01 01:29:11 +03:00
configFile = lib.optionalString (conf!=null) (writeText "config.def.h" conf);
2021-06-01 15:26:42 +03: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 ];
};
}