Compare commits

..

No commits in common. "f7fb112f2148309b71af1eee444ef07c54368e81" and "c59e0ea6e5c9a16d1989c6796288e8f17a03a2a8" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View File

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

View File

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