update nixpkgs

This commit is contained in:
Tim Schubert 2023-09-18 19:34:58 +02:00
parent fa49858d6b
commit 30c1ee54d9
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
3 changed files with 8 additions and 9 deletions

View file

@ -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/

14
flake.lock generated
View file

@ -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": {

View file

@ -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;
};
}