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
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ stdenv, fetchFromGitHub, wxGTK, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "treesheets";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aardappel";
|
|
repo = "treesheets";
|
|
rev = "v${version}";
|
|
sha256 = "0krsj7i5yr76imf83krz2lmlmpbsvpwqg2d4r0jwxiydjfyj4qr4";
|
|
};
|
|
|
|
buildInputs = [ wxGTK makeWrapper ];
|
|
|
|
preConfigure = "cd src";
|
|
|
|
postInstall = ''
|
|
mkdir "$out/share" -p
|
|
cp -av ../TS "$out/share/libexec"
|
|
|
|
mkdir "$out/bin" -p
|
|
makeWrapper "$out/share/libexec/treesheets" "$out/bin/treesheets"
|
|
|
|
mkdir "$out/share/doc" -p
|
|
|
|
for f in readme.html docs examples
|
|
do
|
|
mv -v "$out/share/libexec/$f" "$out/share/doc"
|
|
ln -sv "$out/share/doc/$f" "$out/share/libexec/$f"
|
|
done
|
|
|
|
mkdir "$out/share/applications" -p
|
|
mv -v "$out/share/libexec/treesheets.desktop" "$out/share/applications"
|
|
substituteInPlace "$out/share/applications/treesheets.desktop" \
|
|
--replace "Icon=images/treesheets.svg" "Icon=$out/share/libexec/images/treesheets.svg"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Free Form Data Organizer";
|
|
|
|
longDescription = ''
|
|
The ultimate replacement for spreadsheets, mind mappers, outliners,
|
|
PIMs, text editors and small databases.
|
|
|
|
Suitable for any kind of data organization, such as Todo lists,
|
|
calendars, project management, brainstorming, organizing ideas,
|
|
planning, requirements gathering, presentation of information, etc.
|
|
'';
|
|
|
|
homepage = http://strlen.com/treesheets/;
|
|
maintainers = with maintainers; [ obadz avery ];
|
|
platforms = platforms.linux;
|
|
license = licenses.zlib;
|
|
};
|
|
}
|