Merge pull request #137145 from figsoda/texture-synthesis

This commit is contained in:
Sandro 2021-09-11 21:06:29 +02:00 committed by GitHub
commit c175458f3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ fetchFromGitHub, lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "texture-synthesis";
version = "0.8.2";
src = fetchFromGitHub {
owner = "embarkstudios";
repo = pname;
rev = version;
sha256 = "0n1wbxcnxb7x5xwakxdzq7kg1fn0c48i520j03p7wvm5x97vm5h4";
};
cargoSha256 = "1xszis3ip1hymzbhdili2hvdwd862cycwvsxxyjqmz3g2rlg5b64";
meta = with lib; {
description = "Example-based texture synthesis written in Rust";
homepage = "https://github.com/embarkstudios/texture-synthesis";
license = with licenses; [ mit /* or */ asl20 ];
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -27907,6 +27907,8 @@ with pkgs;
terminal-notifier = callPackage ../applications/misc/terminal-notifier {};
texture-synthesis = callPackage ../tools/graphics/texture-synthesis { };
tty-solitaire = callPackage ../applications/misc/tty-solitaire { };
termtosvg = callPackage ../tools/misc/termtosvg { };