Skip to content

Commit

Permalink
manuskript: cleanup of install
Browse files Browse the repository at this point in the history
  • Loading branch information
leenaars committed Aug 29, 2016
1 parent 005a147 commit fd69c7d
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions pkgs/applications/editors/manuskript/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,36 @@ python3Packages.buildPythonApplication rec {
zlib
];

patchPhase = ''
substituteInPlace manuskript/ui/welcome.py \
--replace sample-projects $out/share/${name}/sample-projects
'';

buildPhase = '''';

installPhase = ''
mkdir -p $out
cp -av * $out/
mkdir -p $out/share/${name}
cp -av bin/ i18n/ libs/ manuskript/ resources/ icons/ $out
cp -r sample-projects/ $out/share/${name}
'';

doCheck = false;

meta = {
description = "A open-source tool for writers";
homepage = http://www.theologeek.ch/manuskript;
longDescription = ''
Manuskript is a tool for those writer who like to organize and
plan everything before writing. The snowflake method can help you
grow your idea into a book, by leading you step by step and asking
you questions to go deeper. While writing, keep track of notes
about every characters, plot, event, place in your story.
Develop complex characters and keep track of all useful infos.
Create intricate plots, linked to your characters, and use them to
outline your story. Organize your ideas about the world your
characters live in.
'';
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.steveej ];
platforms = stdenv.lib.platforms.linux;
Expand Down

0 comments on commit fd69c7d

Please sign in to comment.