2013-05-22 18:03:49 +01:00
|
|
|
|
{stdenv, fetchurl, jre}:
|
|
|
|
|
|
2017-03-18 21:38:41 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
name = "alchemy-${version}";
|
|
|
|
|
version = "008";
|
|
|
|
|
|
2013-05-22 18:03:49 +01:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-03-18 21:38:41 +00:00
|
|
|
|
url = "http://al.chemy.org/files/Alchemy-${version}.tar.gz";
|
|
|
|
|
sha256 = "0449bvdccgx1jqnws1bckzs4nv2d230523qs0jx015gi81s1q7li";
|
2013-05-22 18:03:49 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
2014-06-30 13:56:10 +01:00
|
|
|
|
mkdir -p $out/bin $out/share
|
2013-05-22 18:03:49 +01:00
|
|
|
|
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
|
|
|
|
|
'';
|
|
|
|
|
|
2017-03-18 21:38:41 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2013-05-22 18:03:49 +01:00
|
|
|
|
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/;
|
2017-03-18 21:38:41 +00:00
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
|
maintainers = [ maintainers.marcweber ];
|
|
|
|
|
platforms = platforms.linux;
|
2013-05-22 18:03:49 +01:00
|
|
|
|
};
|
|
|
|
|
}
|