forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
62 lines
1.9 KiB
Nix
62 lines
1.9 KiB
Nix
{ lib, stdenv, mkDerivation, fetchurl, pkgconfig, qmake, qtscript, qtsvg }:
|
|
|
|
mkDerivation rec {
|
|
pname = "vym";
|
|
version = "2.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/vym/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "0lyf0m4y5kn5s47z4sg10215f3jsn3k1bl389jfbh2f5v4srav4g";
|
|
};
|
|
|
|
# Hardcoded paths scattered about all have form share/vym
|
|
# which is encouraging, although we'll need to patch them (below).
|
|
qmakeFlags = [
|
|
"DATADIR=${placeholder "out"}/share"
|
|
"DOCDIR=${placeholder "out"}/share/doc/vym"
|
|
];
|
|
|
|
postPatch = ''
|
|
for x in \
|
|
exportoofiledialog.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp \
|
|
tex/*.{tex,lyx}; \
|
|
do
|
|
substituteInPlace $x \
|
|
--replace /usr/share/vym $out/share/vym \
|
|
--replace /usr/local/share/vym $out/share/vym \
|
|
--replace /usr/share/doc $out/share/doc/vym
|
|
done
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
|
buildInputs = [ qtscript qtsvg ];
|
|
|
|
postInstall = ''
|
|
install -Dm755 -t $out/share/man/man1 doc/*.1.gz
|
|
'';
|
|
|
|
dontGzipMan = true;
|
|
|
|
meta = with lib; {
|
|
description = "A mind-mapping software";
|
|
longDescription = ''
|
|
VYM (View Your Mind) is a tool to generate and manipulate maps which show your thoughts.
|
|
Such maps can help you to improve your creativity and effectivity. You can use them
|
|
for time management, to organize tasks, to get an overview over complex contexts,
|
|
to sort your ideas etc.
|
|
|
|
Maps can be drawn by hand on paper or a flip chart and help to structure your thoughs.
|
|
While a tree like structure like shown on this page can be drawn by hand or any drawing software
|
|
vym offers much more features to work with such maps.
|
|
'';
|
|
homepage = "http://www.insilmaril.de/vym/";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|