mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ stdenv, fetchurl, qmake, qtbase, qtwebkit }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mindforger";
|
|
version = "1.48.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/dvorka/mindforger/releases/download/1.48.0/mindforger_${version}.tgz";
|
|
sha256 = "1wlrl8hpjcpnq098l3n2d1gbhbjylaj4z366zvssqvmafr72iyw4";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ] ;
|
|
buildInputs = [ qtbase qtwebkit ] ;
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true ;
|
|
|
|
patches = [ ./build.patch ] ;
|
|
|
|
postPatch = ''
|
|
substituteInPlace deps/discount/version.c.in --subst-var-by TABSTOP 4
|
|
substituteInPlace app/resources/gnome-shell/mindforger.desktop --replace /usr "$out"
|
|
'';
|
|
|
|
preConfigure = ''
|
|
export AC_PATH="$PATH"
|
|
pushd deps/discount
|
|
./configure.sh
|
|
popd
|
|
'';
|
|
|
|
qmakeFlags = [ "-r mindforger.pro" "CONFIG+=mfnoccache" ] ;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Thinking Notebook & Markdown IDE";
|
|
longDescription = ''
|
|
MindForger is actually more than an editor or IDE - it's human
|
|
mind inspired personal knowledge management tool
|
|
'';
|
|
homepage = https://www.mindforger.com;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|