nixpkgs/pkgs/tools/text/smu/default.nix
2019-11-16 22:27:22 +01:00

27 lines
615 B
Nix

{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "smu";
version = "1.5";
src = fetchFromGitHub {
owner = "Gottox";
repo = "smu";
rev = "v${version}";
sha256 = "1jm7lhnzjx4q7gcwlkvsbffcy0zppywyh50d71ami6dnq182vvcc";
};
# _FORTIFY_SOURCE requires compiling with optimization (-O)
NIX_CFLAGS_COMPILE = "-O";
makeFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
meta = with lib; {
description = "simple markup - markdown like syntax";
homepage = "https://github.com/Gottox/smu";
license = licenses.mit;
maintainers = with maintainers; [ geistesk ];
};
}