cobalt: init at 0.16.5 (#127624)
* cobalt: init at 0.16.5 * Update pkgs/applications/misc/cobalt/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
3a111c3df0
commit
44f27213f1
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/misc/cobalt/default.nix
Normal file
22
pkgs/applications/misc/cobalt/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cobalt";
|
||||
version = "0.16.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cobalt-org";
|
||||
repo = "cobalt.rs";
|
||||
rev = "v${version}";
|
||||
sha256 = "wSvjPifnA8oc0vVmHBMdsMKzX7Gg6TdbPzIXl/SHqn8=";
|
||||
};
|
||||
|
||||
cargoSha256 = "27LcoGBI4elt80uQkTwvToOyEmd2+/3ma5Y32OFrJaw=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Static site generator written in Rust";
|
||||
homepage = "https://github.com/cobalt-org/cobalt.rs/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ethancedwards8 ];
|
||||
};
|
||||
}
|
|
@ -3846,6 +3846,8 @@ in
|
|||
|
||||
cloud-utils = callPackage ../tools/misc/cloud-utils { };
|
||||
|
||||
cobalt = callPackage ../applications/misc/cobalt { };
|
||||
|
||||
cocoapods = callPackage ../development/mobile/cocoapods { };
|
||||
|
||||
cocoapods-beta = lowPrio (callPackage ../development/mobile/cocoapods { beta = true; });
|
||||
|
|
Loading…
Reference in a new issue