mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
fastn: init at 0.3.9
This commit is contained in:
parent
5ac90482e3
commit
839c440e2c
@ -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
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
43
pkgs/fastn/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user