2013-05-22 18:03:49 +01:00
|
|
|
|
{stdenv, fetchurl, jre}:
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-07-13 22:48:06 +01:00
|
|
|
|
name = "alchemy-007";
|
2013-05-22 18:03:49 +01:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = http://al.chemy.org/files/Alchemy-007.tar.gz;
|
|
|
|
|
sha256 = "1pk00m4iajvv9jzv96in10czpcf7zc3d4nmd9biqagpsg28mr70b";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
|
ensureDir $out/bin $out/share
|
|
|
|
|
cp -a . $out/share/alchemy
|
|
|
|
|
cat >> $out/bin/alchemy << EOF
|
|
|
|
|
#!/bin/sh
|
|
|
|
|
cd $out/share/alchemy
|
|
|
|
|
${jre}/bin/java -jar Alchemy.jar "$@"
|
|
|
|
|
EOF
|
|
|
|
|
chmod +x $out/bin/alchemy
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
|
description = "Drawing application";
|
2014-06-22 20:46:34 +01:00
|
|
|
|
longDescription = ''
|
|
|
|
|
Alchemy is an open drawing project aimed at exploring how we can sketch,
|
|
|
|
|
draw, and create on computers in new ways. Alchemy isn’t software for
|
|
|
|
|
creating finished artwork, but rather a sketching environment that
|
|
|
|
|
focuses on the absolute initial stage of the creation process.
|
|
|
|
|
Experimental in nature, Alchemy lets you brainstorm visually to explore
|
|
|
|
|
an expanded range of ideas and possibilities in a serendipitous way.
|
|
|
|
|
'';
|
2013-05-22 18:03:49 +01:00
|
|
|
|
homepage = http://al.chemy.org/;
|
2013-05-30 00:30:48 +01:00
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2013-05-22 18:03:49 +01:00
|
|
|
|
maintainers = [stdenv.lib.maintainers.marcweber];
|
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|