13 stdenv.mkDerivation rec {
14 pname = "notmuch-bower";
17 src = fetchFromGitHub {
21 sha256 = "sha256-CqA9JU/ujqIn/NvtbPtSWxKDYCv4oDdLCgbf2jj9Av4=";
29 substituteInPlace src/compose.m --replace 'shell_quoted("base64' 'shell_quoted("${coreutils}/bin/base64'
30 substituteInPlace src/detect_mime_type.m --replace 'shell_quoted("file' 'shell_quoted("${file}/bin/file'
39 "PARALLEL=-j$(NIX_BUILD_CORES)"
48 mkdir -p $out/share/man/man1
49 mv bower.1 $out/share/man/man1/
53 enableParallelBuilding = true;
56 homepage = "https://github.com/wangp/bower";
57 description = "Curses terminal client for the Notmuch email system";
58 mainProgram = "bower";
59 maintainers = with maintainers; [ jgart ];
60 license = licenses.gpl3Plus;
61 platforms = platforms.linux;