Merge pull request #228786 from ambroisie/add-resumed

resumed: init at 3.0.1
This commit is contained in:
Sandro 2023-05-14 23:15:42 +02:00 committed by GitHub
commit e68bb9dc1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -39224,6 +39224,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 { };