about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-04 12:41:01 +0100
committerGitHub <noreply@github.com>2021-03-04 12:41:01 +0100
commitf233ff3a70a5d7563263ed41f69c70da72c888fd (patch)
tree72bd7f7cba03cb1f8742cdfdd5fd920b9e40e556 /pkgs/applications
parent5b05ea44fb95c1cddbb028e336789ca58ff244c0 (diff)
parent1ebcf4af6283ea71d3a5e692540843e34caabf2c (diff)
Merge pull request #115043 from chuahou/add-stork
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/stork/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/stork/default.nix b/pkgs/applications/misc/stork/default.nix
new file mode 100644
index 0000000000000..16d56eeaa95f4
--- /dev/null
+++ b/pkgs/applications/misc/stork/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "stork";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = "jameslittle230";
+    repo = "stork";
+    rev = "v${version}";
+    sha256 = "sha256-pBJ9n1pQafXagQt9bnj4N1jriczr47QLtKiv+UjWgTg=";
+  };
+
+  cargoSha256 = "sha256-u8L4ZeST4ExYB2y8E+I49HCy41dOfhR1fgPpcVMVDuk=";
+
+  meta = with lib; {
+    description = "Impossibly fast web search, made for static sites";
+    homepage = "https://github.com/jameslittle230/stork";
+    license = with licenses; [ asl20 ];
+    maintainers = with maintainers; [ chuahou ];
+  };
+}