summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-04-13 13:56:54 +0200
committerGitHub <noreply@github.com>2021-04-13 13:56:54 +0200
commit15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8 (patch)
tree2c618cd073cb4f856b9d8d6ac8fb7ef322a1e4b6 /pkgs/applications/graphics
parent04224b7b560b29822cd47291aa6692b804a9c12b (diff)
parent5e5a40b1ee0ccd5f3cd7423dfcf2fb6aad265ca6 (diff)
downloadnixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar.gz
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar.bz2
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar.lz
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar.xz
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.tar.zst
nixpkgs-15c6e7170a6b5f7c656e9fb64c7c8ad29e3d20c8.zip
Merge pull request #102060 from addict3d/add-python-diagrams-from-github
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 ];
+  };
+}