pantheon: Skip nixpkgs-update for packages using un-tagged commits
It looks like nix-update-script cannot handle this well, we can switch to other updaters but I am just too lazy to do that.
This commit is contained in:
parent
bbc8ea1932
commit
bdf65be4be
2 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
repo = pname;
|
repo = pname;
|
||||||
# Add support for AppStream 1.0.
|
# Add support for AppStream 1.0.
|
||||||
# https://github.com/elementary/appcenter/pull/2099
|
# https://github.com/elementary/appcenter/pull/2099
|
||||||
|
# nixpkgs-update: no auto update
|
||||||
rev = "fce55d9373bfb82953191b32e276a2129ffcb8c1";
|
rev = "fce55d9373bfb82953191b32e276a2129ffcb8c1";
|
||||||
hash = "sha256-7VYiE1RkaqN1Yg4pFUBs6k8QjoljYFDgQ9jCTLG3uyk=";
|
hash = "sha256-7VYiE1RkaqN1Yg4pFUBs6k8QjoljYFDgQ9jCTLG3uyk=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -96,6 +96,9 @@ stdenv.mkDerivation rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "elementary";
|
owner = "elementary";
|
||||||
repo = "session-settings";
|
repo = "session-settings";
|
||||||
|
# For systemd managed gnome-session support.
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/228946
|
||||||
|
# nixpkgs-update: no auto update
|
||||||
rev = "3476c89bbb66564a72c6495ac0c61f8f9ed7a3ec";
|
rev = "3476c89bbb66564a72c6495ac0c61f8f9ed7a3ec";
|
||||||
sha256 = "sha256-Z1qW6m0XDkB92ZZVKx98JOMXiBDbGpQ0cAXgWdqK27c=";
|
sha256 = "sha256-Z1qW6m0XDkB92ZZVKx98JOMXiBDbGpQ0cAXgWdqK27c=";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue