diff --git a/default.nix b/default.nix index 61b6af7..5823096 100644 --- a/default.nix +++ b/default.nix @@ -1,7 +1,7 @@ { stdenv, hugo, hugo-theme-anubis }: stdenv.mkDerivation rec { src = ./.; - nativeBuildInputs = [ hugo hugo-theme-anubis ]; + nativeBuildInputs = [ hugo ]; # avoid git submodules using flakes :-) patchPhase = '' mkdir -p themes/ diff --git a/flake.lock b/flake.lock index 14d275b..028484a 100644 --- a/flake.lock +++ b/flake.lock @@ -3,11 +3,11 @@ "hugo-theme-anubis": { "flake": false, "locked": { - "lastModified": 1626675855, - "narHash": "sha256-Vj77NcXxPOcatDbLvW+d90hsUpYH+2eyhpyXv82ZTts=", + "lastModified": 1693734155, + "narHash": "sha256-/saWnt2ryheBvW9aHqpjAE4aNBhEhkrD62Ch8CI2GvM=", "owner": "mitrichius", "repo": "hugo-theme-anubis", - "rev": "5dab60e04a37896c09a32137aefe821c63b3af04", + "rev": "e4e2c0bc4145ee152a32fdd940ed398ab0b77e6c", "type": "github" }, "original": { @@ -18,10 +18,10 @@ }, "nixpkgs": { "locked": { - "lastModified": 1629226339, - "narHash": "sha256-szvgmQcUJM3Kv/wNyIn+wtMrrvsks0bk9JOqI2Ij8Ao=", - "path": "/nix/store/vy5l0dvdwwhyc988z185f9i7rqbc1n8y-source", - "rev": "2435ea48c3b295d9cd490535730bb13ab8cfd8a5", + "lastModified": 1694499547, + "narHash": "sha256-R7xMz1Iia6JthWRHDn36s/E248WB1/je62ovC/dUVKI=", + "path": "/nix/store/zxh6mqr25a59giy1a0ca37njv92lv9hy-source", + "rev": "e5f018cf150e29aac26c61dac0790ea023c46b24", "type": "path" }, "original": { diff --git a/flake.nix b/flake.nix index 90423d2..190bc23 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,5 @@ outputs = { self, hugo-theme-anubis, nixpkgs }: { packages.x86_64-linux.homePage = nixpkgs.legacyPackages.x86_64-linux.callPackage ./default.nix { inherit hugo-theme-anubis; }; - defaultPackage.x86_64-linux = self.packages.x86_64-linux.homePage; }; }