From 1cc0ef82f6d3ef7d78d0df2331e9050c4e4a1761 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Mon, 23 Jun 2025 23:22:18 +0800 Subject: [PATCH] pkgs(handbrake): Remove temporily overlay for handbrake --- flake.lock | 17 ----------------- flake.nix | 7 ------- overlays/modifications/default.nix | 1 - overlays/modifications/fix-handbrake.nix | 5 ----- 4 files changed, 30 deletions(-) delete mode 100644 overlays/modifications/fix-handbrake.nix diff --git a/flake.lock b/flake.lock index ae2553a..2d57f6a 100644 --- a/flake.lock +++ b/flake.lock @@ -644,22 +644,6 @@ "type": "github" } }, - "nixpkgs-handbrake": { - "locked": { - "lastModified": 1749936441, - "narHash": "sha256-MfdTzz/ArELrweWK7FLofbK/NMvbpEhV8QCo6f7UBII=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c74daf34b6de017d7d43196c494f887a2b956f0f", - "type": "github" - }, - "original": { - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "c74daf34b6de017d7d43196c494f887a2b956f0f", - "type": "github" - } - }, "nixpkgs-hurl": { "locked": { "lastModified": 1750581657, @@ -830,7 +814,6 @@ "nixos-cosmic": "nixos-cosmic", "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs_3", - "nixpkgs-handbrake": "nixpkgs-handbrake", "nixpkgs-hurl": "nixpkgs-hurl", "nur-rycee": "nur-rycee", "sops-nix": "sops-nix", diff --git a/flake.nix b/flake.nix index 1b78b84..a26d667 100644 --- a/flake.nix +++ b/flake.nix @@ -45,13 +45,6 @@ ref = "refs/pull/418842/head"; }; - nixpkgs-handbrake = { - type = "github"; - owner = "NixOS"; - repo = "nixpkgs"; - rev = "c74daf34b6de017d7d43196c494f887a2b956f0f"; - }; - lix-module = { url = "git+https://git.lix.systems/lix-project/nixos-module?ref=release-2.93"; inputs = { diff --git a/overlays/modifications/default.nix b/overlays/modifications/default.nix index 9c2b5e2..61b8c26 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -12,7 +12,6 @@ in ./helix.nix ./cliphist.nix ./fix-hurl.nix - ./fix-handbrake.nix ] |> map (file: import file args) |> (overlays: (lib.composeManyExtensions overlays) final prev) diff --git a/overlays/modifications/fix-handbrake.nix b/overlays/modifications/fix-handbrake.nix deleted file mode 100644 index 868b962..0000000 --- a/overlays/modifications/fix-handbrake.nix +++ /dev/null @@ -1,5 +0,0 @@ -{inputs, ...}: final: prev: let - inherit (prev.stdenv.hostPlatform) system; -in { - inherit (inputs.nixpkgs-handbrake.legacyPackages.${system}) handbrake; -}