forked from mirrors/nixpkgs
Merge pull request #115043 from chuahou/add-stork
This commit is contained in:
commit
f233ff3a70
|
@ -1711,6 +1711,12 @@
|
|||
githubId = 2245737;
|
||||
name = "Christopher Mark Poole";
|
||||
};
|
||||
chuahou = {
|
||||
email = "human+github@chuahou.dev";
|
||||
github = "chuahou";
|
||||
githubId = 12386805;
|
||||
name = "Chua Hou";
|
||||
};
|
||||
chvp = {
|
||||
email = "nixpkgs@cvpetegem.be";
|
||||
github = "chvp";
|
||||
|
|
25
pkgs/applications/misc/stork/default.nix
Normal file
25
pkgs/applications/misc/stork/default.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -29353,6 +29353,8 @@ in
|
|||
|
||||
sndio = callPackage ../misc/sndio { };
|
||||
|
||||
stork = callPackage ../applications/misc/stork { };
|
||||
|
||||
oclgrind = callPackage ../development/tools/analysis/oclgrind { };
|
||||
|
||||
opkg = callPackage ../tools/package-management/opkg { };
|
||||
|
|
Loading…
Reference in a new issue