Compare commits

...

2 Commits

Author SHA1 Message Date
f7fb112f21 build: I don't understand this nix error.
Some checks are pending
Build Tilde Friends / Build-All (push) Waiting to run
2025-01-29 20:32:35 -05:00
b2c0211190 build: nix?
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled
2025-01-29 20:28:26 -05:00
2 changed files with 5 additions and 4 deletions

View File

@ -21,18 +21,19 @@
}:
pkgs.stdenv.mkDerivation rec {
pname = "tildefriends";
version = "0.0.26";
version = "0.0.27";
src = pkgs.fetchFromGitea {
domain = "dev.tildefriends.net";
owner = "cory";
repo = "tildefriends";
rev = "v${version}";
hash = "sha256-XJ7M++risfsRn9GkS1zjTQpqqV5S09uyimeVzU9hGGg=";
hash = "sha256-NhoTBWYsWc206f1+M9haxHSJU6ZSGoP5nPStymAIyRk=";
fetchSubmodules = true;
};
nativeBuildInputs = with pkgs; [
bash
glibc
gnumake
openssl

View File

@ -1,5 +1,5 @@
#!/bin/bash
#!/usr/bin/env bash
#
BUILD_PLATFORM=$(uname -s)
if [[ -z $BUILD_TARGET ]]; then
BUILD_TARGET=$(uname -m)