mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
21 lines
501 B
Nix
21 lines
501 B
Nix
{ pkgs, lib, stdenv, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation rec {
|
|
name = "hydrasect";
|
|
src = builtins.fetchGit {
|
|
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 ];
|
|
};
|
|
}
|