about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/wavefunctioncollapse/default.nix
blob: 20d07e52f6c74316fc98e6e3c58fd5903b646db8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{stdenv, fetchFromGitHub, mono}:
stdenv.mkDerivation rec {
  name = "wavefunctioncollapse-${version}";
  version = "0.0pre20170130";
  src = fetchFromGitHub {
    owner = "mxgmn";
    repo = "WaveFunctionCollapse";
    rev = "ef660c037b1d7c4ebce66efc625af2bb2f2111c0";
    sha256 = "1dr5fvdgn1jqqacby6rrqm951adx3jw0j70r5i8pmrqnnw482l8m";
  };
  buildPhase = ''
    mcs *.cs -out:wavefunctioncollapse.exe -r:System.Drawing
    grep -m1 -B999 '^[*][/]' Main.cs > COPYING.MIT
  '';
  installPhase = ''
    mkdir -p "$out"/{bin,share/doc/wavefunctioncollapse,share/wavefunctioncollapse}
    cp README.md COPYING.MIT "$out"/share/doc/wavefunctioncollapse
    cp wavefunctioncollapse.exe "$out"/bin
    cp -r [Ss]amples samples.xml "$out/share/wavefunctioncollapse"

    echo "#! ${stdenv.shell}" >> "$out/bin/wavefunctioncollapse"
    echo "chmod u+w ." >> "$out/bin/wavefunctioncollapse"
    echo "'${mono}/bin/mono' '$out/bin/wavefunctioncollapse.exe' \"\$@\"" >>  "$out/bin/wavefunctioncollapse"
    chmod a+x "$out/bin/wavefunctioncollapse"
  '';
  buildInputs = [mono];
  meta = {
    inherit version;
    description = ''A generator of bitmaps that are locally similar to the input bitmap'';
    license = stdenv.lib.licenses.mit;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.linux;
  };
}