hackyplayer: move import to third_party

This commit is contained in:
Luke Granger-Brown 2024-06-22 18:27:55 +01:00
parent 93d5a104da
commit 80517a0a22
2 changed files with 9 additions and 2 deletions

View file

@ -5,8 +5,7 @@
{ depot, pkgs, lib, config, ... }:
let
hackyplayerSrc = /home/lukegb/Projects/hackyplayer;
hackyplayer = import hackyplayerSrc { inherit pkgs; };
inherit (depot.third_party) hackyplayer;
yamlFormat = pkgs.formats.yaml {};

View file

@ -138,4 +138,12 @@ rec {
poetry2nix = import "${poetry2nixSrc}" { pkgs = ch.depot.pkgs; };
lanzaboote = import ./lanzaboote.nix { pkgs = nixpkgs; };
hackyplayerSrc = nixpkgs.fetchFromGitHub {
owner = "hacks-r-us";
repo = "hackyplayer";
rev = "a6815fc0165da9d03e97523ee3f23d1bd2f04cad";
hash = "sha256-KId57tgaVchM+eM70/taUarcBfsSydVk/Hm7FqcwG2Q=";
};
hackyplayer = import hackyplayerSrc { pkgs = nixpkgs; };
}