summary refs log tree commit diff
path: root/pkgs/tools/networking/curlie
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-08-18 05:52:19 +0200
committerWael Nasreddine <wael.nasreddine@gmail.com>2019-08-17 20:52:19 -0700
commit4d5d448859533812f11d336cc521cae3ad744a9f (patch)
tree1a4da0527f0fd7b7c494eb7c3ca5f56260c73db2 /pkgs/tools/networking/curlie
parent04fb8593bd9a24eb0e693524d9ae153fff89afba (diff)
downloadnixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar.gz
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar.bz2
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar.lz
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar.xz
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.tar.zst
nixpkgs-4d5d448859533812f11d336cc521cae3ad744a9f.zip
curlie: init at 1.2.0 (#66799)
Diffstat (limited to 'pkgs/tools/networking/curlie')
-rw-r--r--pkgs/tools/networking/curlie/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/networking/curlie/default.nix b/pkgs/tools/networking/curlie/default.nix
new file mode 100644
index 00000000000..2073c0b8497
--- /dev/null
+++ b/pkgs/tools/networking/curlie/default.nix
@@ -0,0 +1,22 @@
+{ buildGoModule, fetchFromGitHub, lib }:
+
+buildGoModule rec {
+  pname = "curlie";
+  version = "1.2.0";
+
+  src= fetchFromGitHub {
+    owner = "rs";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0jgwd1amwjpmfgg08j9m9i15rpxijhmld9najzqb2gf8c1n5d8cf";
+  };
+
+  modSha256 = "18nwq99vv3nbdwfilfn8v64mn58jviwybi93li0lcg7779nxab3d";
+
+  meta = with lib; {
+    description = "Curlie is a frontend to curl that adds the ease of use of httpie, without compromising on features and performance";
+    homepage = https://curlie.io/;
+    maintainers = with maintainers; [ ma27 ];
+    license = licenses.mit;
+  };
+}