3
0
Fork 0
forked from mirrors/nixpkgs

resumed: init at 3.0.1

This commit is contained in:
Bruno BELANYI 2023-04-28 21:12:34 +01:00
parent 4657c27755
commit 743c4833d4
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildNpmPackage, fetchFromGitHub }:
buildNpmPackage rec {
pname = "resumed";
version = "3.0.1";
src = fetchFromGitHub {
owner = "rbardini";
repo = "resumed";
rev = "v${version}";
hash = "sha256-X1efWl0CjbEbhNfDUNvb5SCc2exfI8v95gzqcaKU5eU=";
};
npmDepsHash = "sha256-b8NeO0w2UH1wEifDCkl8L48LoJM0jLStE0fO9G438dU=";
meta = with lib; {
description = "Lightweight JSON Resume builder, no-frills alternative to resume-cli";
homepage = "https://github.com/rbardini/resumed";
license = licenses.mit;
maintainers = with maintainers; [ ambroisie ];
};
}

View file

@ -39022,6 +39022,8 @@ with pkgs;
resp-app = libsForQt5.callPackage ../applications/misc/resp-app { };
resumed = callPackage ../applications/misc/resumed { };
robin-map = callPackage ../development/libraries/robin-map { };
robo3t = callPackage ../applications/misc/robo3t { };