tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
texture-synthesis: init at 0.8.2
figsoda
4 years ago
2972c7a6
82d19cb0
+24
2 changed files
expand all
collapse all
unified
split
pkgs
tools
graphics
texture-synthesis
default.nix
top-level
all-packages.nix
+22
pkgs/tools/graphics/texture-synthesis/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ fetchFromGitHub, lib, rustPlatform }:
2
+
3
+
rustPlatform.buildRustPackage rec {
4
+
pname = "texture-synthesis";
5
+
version = "0.8.2";
6
+
7
+
src = fetchFromGitHub {
8
+
owner = "embarkstudios";
9
+
repo = pname;
10
+
rev = version;
11
+
sha256 = "0n1wbxcnxb7x5xwakxdzq7kg1fn0c48i520j03p7wvm5x97vm5h4";
12
+
};
13
+
14
+
cargoSha256 = "1xszis3ip1hymzbhdili2hvdwd862cycwvsxxyjqmz3g2rlg5b64";
15
+
16
+
meta = with lib; {
17
+
description = "Example-based texture synthesis written in Rust";
18
+
homepage = "https://github.com/embarkstudios/texture-synthesis";
19
+
license = with licenses; [ mit /* or */ asl20 ];
20
+
maintainers = with maintainers; [ figsoda ];
21
+
};
22
+
}
+2
pkgs/top-level/all-packages.nix
···
27805
27806
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
27807
0
0
27808
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
27809
27810
termtosvg = callPackage ../tools/misc/termtosvg { };
···
27805
27806
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
27807
27808
+
texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
27809
+
27810
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
27811
27812
termtosvg = callPackage ../tools/misc/termtosvg { };