hackyplayer: move import to third_party
This commit is contained in:
parent
93d5a104da
commit
80517a0a22
2 changed files with 9 additions and 2 deletions
|
@ -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 {};
|
||||
|
||||
|
|
8
third_party/default.nix
vendored
8
third_party/default.nix
vendored
|
@ -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; };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue