summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorNick Bathum <nickbathum@gmail.com>2021-04-10 13:03:54 -0400
committerNick Bathum <nickbathum@gmail.com>2021-04-10 13:12:59 -0400
commite2d7984d8cae0f9be8ab147f9afc89022b866c27 (patch)
tree7c043253a0f5b701d7e818c0995350aa0d7d9b31 /pkgs/applications/graphics
parent1827b73b35dc1b2c0187d968e3d0da07edcd10d7 (diff)
downloadnixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar.gz
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar.bz2
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar.lz
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar.xz
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.tar.zst
nixpkgs-e2d7984d8cae0f9be8ab147f9afc89022b866c27.zip
round: init at v0.0.2
Round image corners from CLI. Used by python diagrams.
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/round/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/round/default.nix b/pkgs/applications/graphics/round/default.nix
new file mode 100644
index 00000000000..a34a52c4eee
--- /dev/null
+++ b/pkgs/applications/graphics/round/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "round";
+  version = "0.0.2";
+
+  src = fetchFromGitHub {
+    owner = "mingrammer";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "09brjr3h4qnhlidxlki1by5anahxy16ai078zm4k7ryl579amzdw";
+  };
+
+  vendorSha256 = null;
+
+  subPackages = [ "." ];
+
+  meta = with lib; {
+    description = "Round image corners from CLI";
+    homepage    = "https://github.com/mingrammer/round";
+    license     = licenses.mit;
+    maintainers =  with maintainers; [ addict3d ];
+  };
+}