remove superfluous patch for grocy
This commit is contained in:
parent
a60baa19a1
commit
9be67e1c57
2 changed files with 7 additions and 37 deletions
13
flake.nix
13
flake.nix
|
|
@ -15,7 +15,7 @@
|
||||||
let
|
let
|
||||||
originPkgs = nixpkgs.legacyPackages.${system};
|
originPkgs = nixpkgs.legacyPackages.${system};
|
||||||
shbPatches = originPkgs.lib.optionals (system == "x86_64-linux") [
|
shbPatches = originPkgs.lib.optionals (system == "x86_64-linux") [
|
||||||
# Leaving commented out for an example.
|
# Leaving commented out as an example.
|
||||||
# (originPkgs.fetchpatch {
|
# (originPkgs.fetchpatch {
|
||||||
# url = "https://github.com/NixOS/nixpkgs/pull/317107.patch";
|
# url = "https://github.com/NixOS/nixpkgs/pull/317107.patch";
|
||||||
# hash = "sha256-hoLrqV7XtR1hP/m0rV9hjYUBtrSjay0qcPUYlKKuVWk=";
|
# hash = "sha256-hoLrqV7XtR1hP/m0rV9hjYUBtrSjay0qcPUYlKKuVWk=";
|
||||||
|
|
@ -56,11 +56,12 @@
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
grocy = prev.grocy.overrideAttrs (f: p: {
|
# Leaving commented out as an example.
|
||||||
patches = p.patches ++ [
|
# grocy = prev.grocy.overrideAttrs (f: p: {
|
||||||
./patches/grocy.patch
|
# patches = p.patches ++ [
|
||||||
];
|
# ./patches/grocy.patch
|
||||||
});
|
# ];
|
||||||
|
# });
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
From b09d31578f4091c81ec2352bd334a007a093d6df Mon Sep 17 00:00:00 2001
|
|
||||||
From: ibizaman <ibizapeanut@gmail.com>
|
|
||||||
Date: Fri, 31 Jan 2025 20:52:40 +0100
|
|
||||||
Subject: [PATCH] Make labels on login form point to correct inputs
|
|
||||||
|
|
||||||
---
|
|
||||||
views/login.blade.php | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/views/login.blade.php b/views/login.blade.php
|
|
||||||
index 89538c3ea..ef708a657 100644
|
|
||||||
--- a/views/login.blade.php
|
|
||||||
+++ b/views/login.blade.php
|
|
||||||
@@ -15,7 +15,7 @@
|
|
||||||
novalidate>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
- <label for="name">{{ $__t('Username') }}</label>
|
|
||||||
+ <label for="username">{{ $__t('Username') }}</label>
|
|
||||||
<input type="text"
|
|
||||||
class="form-control"
|
|
||||||
required
|
|
||||||
@@ -24,7 +24,7 @@ class="form-control"
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
- <label for="name">{{ $__t('Password') }}</label>
|
|
||||||
+ <label for="password">{{ $__t('Password') }}</label>
|
|
||||||
<input type="password"
|
|
||||||
class="form-control"
|
|
||||||
required
|
|
||||||
Loading…
Reference in a new issue