fastn: init at 0.3.9

This commit is contained in:
Gabriel Arazas 2023-07-18 14:10:32 +08:00
parent 5ac90482e3
commit 839c440e2c
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
3 changed files with 5218 additions and 0 deletions

View File

@ -11,6 +11,7 @@ let
cosmic-launcher = callPackage ./cosmic-launcher { };
clidle = callPackage ./clidle.nix { };
domterm = callPackage ./domterm { };
fastn = callPackage ./fastn { };
freerct = callPackage ./freerct.nix { };
distant = callPackage ./distant.nix { };
gnome-search-provider-recoll =

5174
pkgs/fastn/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

43
pkgs/fastn/default.nix Normal file
View File

@ -0,0 +1,43 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "fastn";
version = "0.3.9";
src = fetchFromGitHub {
owner = "fastn-stack";
repo = pname;
rev = version;
hash = "sha256-KhJc6cM1KnJSoaD3a0uRwlObGsu8p66gn4XAtFTHlVg=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"deadpool-0.9.5" = "sha256-4M2+nVVG/w0gnHkxTWVnfvy5HegW9A+nlWAkMltapeI=";
"dioxus-core-0.3.2" = "sha256-jOVkqWPcGa/GGeZiQji7JbD2YF+qrXC9AZGozZg47+c=";
"fbt-lib-0.1.18" = "sha256-xzhApWSVsVelii0R8vfB60kj0gA87MRTEplmX+UT96A=";
"ftd-0.2.0" = "sha256-iHWR5KMgmo1QfLPc8ZKS4NvshXEg/OJw7c7fy3bs8v0=";
};
};
OPENSSL_NO_VENDOR = "1";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
checkFlags = [
"--skip=tests::fbt"
];
meta = with lib; {
homepage = "https://fastn.com/";
description = "An integrated development environment for FTD";
license = licenses.bsd3;
maintainers = with maintainers; [ foo-dogsquared ];
};
}