Skip to content

Commit adf1eb1

Browse files
committed
jsonresume-themes: add themes hired, hr-md, minyma
1 parent 6d8394d commit adf1eb1

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

packages/jsonresume/themes/hired.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{ lib
2+
, buildNpmPackage
3+
, fetchFromGitHub
4+
}:
5+
6+
buildNpmPackage rec {
7+
pname = "jsonresume-theme-hired";
8+
version = "unstable-2024-03-29";
9+
dontNpmBuild = true;
10+
npmDepsHash = "sha256-xrCaxNntDo/f78K0/PMn9yeVEE5KuksNUkOImHpvQbM=";
11+
12+
src = fetchFromGitHub {
13+
owner = "aplocher";
14+
repo = pname;
15+
rev = "3501be0858f89e94e51e9c5119f7d13ace168c6e";
16+
hash = "sha256-UYRFT7cKKh+96oqAlkmcermjxDp2CWiY1OS5XmtV0nQ=";
17+
};
18+
19+
meta = with lib; {
20+
description = "";
21+
homepage = "https://github.com/aplocher/jsonresume-theme-hired";
22+
license = licenses.mit; # FIXME: nix-init did not found a license
23+
maintainers = with maintainers; [ ];
24+
mainProgram = "jsonresume-theme-hired";
25+
platforms = platforms.all;
26+
};
27+
}

packages/jsonresume/themes/hr-md.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{ lib
2+
, buildNpmPackage
3+
, fetchFromGitHub
4+
}:
5+
6+
buildNpmPackage rec {
7+
pname = "jsonresume-theme-hr-md";
8+
version = "unstable-2024-02-26";
9+
dontNpmBuild = true;
10+
npmDepsHash = "sha256-dpp8Amdjr5xSBH0w139CeS1NWpQnbzftxNCO/M8ST/A=";
11+
12+
src = fetchFromGitHub {
13+
owner = "Greg-Bush";
14+
repo = pname;
15+
rev = "7a5cebf613fed7e4ae752f94f653070c60907097";
16+
hash = "sha256-zN1ILDEplCJYYrLiB/xY//FJV4FOs9XYxjldUKIy4eA=";
17+
};
18+
19+
meta = with lib; {
20+
description = "JSON Resume Markdown Theme Repository";
21+
homepage = "https://github.com/Greg-Bush/jsonresume-theme-hr-md";
22+
license = licenses.mit;
23+
maintainers = with maintainers; [ ];
24+
mainProgram = "jsonresume-theme-hr-md";
25+
platforms = platforms.all;
26+
};
27+
}

packages/jsonresume/themes/minyma.nix

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{ lib
2+
, fetchFromGitHub
3+
, buildNpmPackage
4+
}:
5+
6+
buildNpmPackage rec {
7+
pname = "jsonresume-theme-minyma";
8+
version = "unstable-2024-03-27";
9+
dontNpmBuild = true;
10+
npmDepsHash = "sha256-MHqqvVDn6tVxRHH5XJQDTIKisMIXPPkB6ny5PMPSGqg=";
11+
12+
src = fetchFromGitHub {
13+
owner = "godraadam";
14+
repo = pname;
15+
rev = "78b51b8eaa9a54f24b0230e0be4cb2dac168f38d";
16+
hash = "sha256-MJ5JxIAryDOJQFx7Sod+SBzGFApIZIqUSLNfgQahCYI=";
17+
};
18+
19+
meta = with lib; {
20+
description = "A minymalistic theme for json-resume";
21+
homepage = "https://github.com/godraadam/jsonresume-theme-minyma";
22+
# license = licenses.unfree; # FIXME: nix-init did not found a license
23+
maintainers = with maintainers; [ ];
24+
mainProgram = "jsonresume-theme-minyma";
25+
platforms = platforms.all;
26+
};
27+
}

0 commit comments

Comments
 (0)