element: init at 1.0.0
This commit is contained in:
parent
39717cb99f
commit
0d635e2646
2 changed files with 24 additions and 0 deletions
22
pkgs/applications/science/chemistry/element/default.nix
Normal file
22
pkgs/applications/science/chemistry/element/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "element";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gennaro-tedesco";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "gjdcNvYNnxb6hOE/MQjTezZeYGBWTr4E8/Pt8YQv3lY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "A4g2rQTaYrA4/0rqldUv7iuibzNINEvx9StUnaN2/Yg=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The periodic table on the command line";
|
||||||
|
homepage = "https://github.com/gennaro-tedesco/element";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = [ maintainers.j0hax ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2562,6 +2562,8 @@ in
|
||||||
|
|
||||||
electron-mail = callPackage ../applications/networking/mailreaders/electron-mail { };
|
electron-mail = callPackage ../applications/networking/mailreaders/electron-mail { };
|
||||||
|
|
||||||
|
element = callPackage ../applications/science/chemistry/element { };
|
||||||
|
|
||||||
element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { };
|
element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { };
|
||||||
|
|
||||||
element-web = callPackage ../applications/networking/instant-messengers/element/element-web.nix {
|
element-web = callPackage ../applications/networking/instant-messengers/element/element-web.nix {
|
||||||
|
|
Loading…
Reference in a new issue