making some tweaks to the default.nix
My NixOS config builds the app on every update. When we start to do proper releases and such I'll fix this, but for now I want to change up the default.nix so my config only builds a certain release.
This commit is contained in:
parent
802f3ffbde
commit
3ce236aefe
1 changed files with 7 additions and 2 deletions
|
@ -2,6 +2,7 @@
|
|||
# with pkgs;
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitLab,
|
||||
lib,
|
||||
gcc,
|
||||
gnumake,
|
||||
|
@ -23,7 +24,6 @@
|
|||
ki18n,
|
||||
kcoreaddons,
|
||||
# kwindowsystem,
|
||||
podofo,
|
||||
mpv,
|
||||
ffmpeg_6-full,
|
||||
# Rust tools
|
||||
|
@ -41,7 +41,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
__noChroot = true;
|
||||
|
||||
src = ./.;
|
||||
src = fetchFromGitLab {
|
||||
owner = "chriscochrun";
|
||||
repo = "church-presenter";
|
||||
rev = "0.1";
|
||||
sha256 = "sha256-tOQWUu+RTB4lG/RojYJUNQPuc/qr5HK/eeuaYAoNW6o=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with rustPlatform; [
|
||||
cargoSetupHook
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue