nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

default.nix (864B)


      1 {
      2   lib,
      3   stdenv,
      4   rustPlatform,
      5   fetchFromSourcehut,
      6   pkg-config,
      7   openssl,
      8   darwin,
      9 }:
     10 
     11 rustPlatform.buildRustPackage rec {
     12   pname = "gemserv";
     13   version = "0.6.6";
     14 
     15   src = fetchFromSourcehut {
     16     owner = "~int80h";
     17     repo = "gemserv";
     18     rev = "v${version}";
     19     hash = "sha256-jFh7OksYGXGWwLb4HtAuDQ7OsWxedqeLARPI20RyAgQ=";
     20   };
     21 
     22   useFetchCargoVendor = true;
     23   cargoHash = "sha256-ehN8cHkY7FWMWZ9E+ETMEsPdUuupJlEGN6+76ocFI8k=";
     24 
     25   nativeBuildInputs = [ pkg-config ];
     26 
     27   buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
     28 
     29   postInstall = ''
     30     install -Dm644 config.toml -t $out/share/gemserv
     31   '';
     32 
     33   meta = {
     34     description = "A gemini server written in rust";
     35     homepage = "https://git.sr.ht/~int80h/gemserv";
     36     license = lib.licenses.mit;
     37     maintainers = [ lib.maintainers.sikmir ];
     38   };
     39 }