snowfield/packages/hydrasect/default.nix

22 lines
501 B
Nix
Raw Normal View History

2023-01-21 19:36:02 +01:00
{ pkgs, lib, stdenv, ... }:
2023-01-21 19:35:42 +01:00
pkgs.stdenv.mkDerivation rec {
name = "hydrasect";
2023-01-21 19:36:02 +01:00
src = builtins.fetchGit {
2023-01-21 19:35:42 +01:00
url = "https://git.qyliss.net/hydrasect/";
ref = "main";
rev = "e8ac7c351122f1a8fc3dbf0cd4805cf2e83d14da";
};
nativebuildInputs = with pkgs; [ meson rustc ninja pkg-config ];
buildInputs = nativebuildInputs;
enableParallelBuilding = true;
meta = with pkgs.lib; {
homepage = "https://git.qyliss.net/hydrasect/";
license = with licenses; [ gpl3Only ];
};
}