syntex: init at 0.0pre20160915
This commit is contained in:
parent
3995f280ad
commit
6546f56e71
34
pkgs/tools/graphics/syntex/default.nix
Normal file
34
pkgs/tools/graphics/syntex/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{stdenv, fetchFromGitHub, mono}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "syntex-${version}";
|
||||||
|
version = "0.0pre20160915";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mxgmn";
|
||||||
|
repo = "SynTex";
|
||||||
|
rev = "f499a7c8112be4a63eb44843ba72957c2c9a04db";
|
||||||
|
sha256 = "13fz6frlxsdz8qq94fsvim27cd5klmdsax5109yxm9175vgvpa0a";
|
||||||
|
};
|
||||||
|
buildPhase = ''
|
||||||
|
mcs *.cs -out:syntex.exe -r:System.Drawing
|
||||||
|
grep -m1 -B999 '^[*][/]' SynTex.cs > COPYING.MIT
|
||||||
|
'';
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out"/{bin,share/doc/syntex,share/syntex}
|
||||||
|
cp README.md COPYING.MIT "$out"/share/doc/syntex
|
||||||
|
cp syntex.exe "$out"/bin
|
||||||
|
cp -r [Ss]amples samples.xml "$out/share/syntex"
|
||||||
|
|
||||||
|
echo "#! ${stdenv.shell}" >> "$out/bin/syntex"
|
||||||
|
echo "chmod u+w ." >> "$out/bin/syntex"
|
||||||
|
echo "'${mono}/bin/mono' '$out/bin/syntex.exe' \"\$@\"" >> "$out/bin/syntex"
|
||||||
|
chmod a+x "$out/bin/syntex"
|
||||||
|
'';
|
||||||
|
buildInputs = [mono];
|
||||||
|
meta = {
|
||||||
|
inherit version;
|
||||||
|
description = ''Texture synthesis from examples'';
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -3622,6 +3622,8 @@ in
|
|||||||
|
|
||||||
storebrowse = callPackage ../tools/system/storebrowse { };
|
storebrowse = callPackage ../tools/system/storebrowse { };
|
||||||
|
|
||||||
|
syntex = callPackage ../tools/graphics/syntex {};
|
||||||
|
|
||||||
fusesmb = callPackage ../tools/filesystems/fusesmb { samba = samba3; };
|
fusesmb = callPackage ../tools/filesystems/fusesmb { samba = samba3; };
|
||||||
|
|
||||||
sl = callPackage ../tools/misc/sl { };
|
sl = callPackage ../tools/misc/sl { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user