summary refs log tree commit diff
path: root/pkgs/tools/graphics/texture-synthesis
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-09-08 21:13:18 -0400
committerfigsoda <figsoda@pm.me>2021-09-08 21:13:18 -0400
commit2972c7a670aab7ffd37a89d0f6593cd8a9e35be7 (patch)
tree2dc2ee51095dd1c3896e6fcd0f516553024dffc7 /pkgs/tools/graphics/texture-synthesis
parent82d19cb068d7213c8beaa96220f1d81d57a28381 (diff)
downloadnixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar.gz
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar.bz2
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar.lz
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar.xz
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.tar.zst
nixpkgs-2972c7a670aab7ffd37a89d0f6593cd8a9e35be7.zip
texture-synthesis: init at 0.8.2
Diffstat (limited to 'pkgs/tools/graphics/texture-synthesis')
-rw-r--r--pkgs/tools/graphics/texture-synthesis/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/texture-synthesis/default.nix b/pkgs/tools/graphics/texture-synthesis/default.nix
new file mode 100644
index 00000000000..c541f874adc
--- /dev/null
+++ b/pkgs/tools/graphics/texture-synthesis/default.nix
@@ -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 ];
+  };
+}