texture-synthesis: init at 0.8.2

figsoda 2972c7a6 82d19cb0

+24
+22
pkgs/tools/graphics/texture-synthesis/default.nix
··· 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 27805 27806 27806 terminal-notifier = callPackage ../applications/misc/terminal-notifier {}; 27807 27807 27808 + texture-synthesis = callPackage ../tools/graphics/texture-synthesis { }; 27809 + 27808 27810 tty-solitaire = callPackage ../applications/misc/tty-solitaire { }; 27809 27811 27810 27812 termtosvg = callPackage ../tools/misc/termtosvg { };