lol

Merge pull request #297976 from drupol/devenv/add-meta-attributes

devenv: add `meta` attributes

authored by

Domen Kožar and committed by
GitHub
284dd643 0b0a0ff4

+22 -1
+22 -1
pkgs/by-name/de/devenv/package.nix
··· 1 - { stdenv, lib, openssl, darwin, libgit2, makeWrapper, nix, pkg-config, rustPlatform, cachix, fetchFromGitHub }: 1 + { stdenv 2 + , lib 3 + , openssl 4 + , darwin 5 + , libgit2 6 + , makeWrapper 7 + , nix 8 + , pkg-config 9 + , rustPlatform 10 + , cachix 11 + , fetchFromGitHub 12 + }: 2 13 3 14 let 4 15 devenv_nix = nix.overrideAttrs (old: { ··· 13 24 doCheck = false; 14 25 doInstallCheck = false; 15 26 }); 27 + 16 28 version = "1.0.1"; 17 29 in rustPlatform.buildRustPackage { 18 30 pname = "devenv"; ··· 38 50 postInstall = '' 39 51 wrapProgram $out/bin/devenv --set DEVENV_NIX ${devenv_nix} --prefix PATH ":" "$out/bin:${cachix}/bin" 40 52 ''; 53 + 54 + meta = { 55 + changelog = "https://github.com/cachix/devenv/releases/tag/v${version}"; 56 + description = "Fast, Declarative, Reproducible, and Composable Developer Environments"; 57 + homepage = "https://github.com/cachix/devenv"; 58 + license = lib.licenses.asl20; 59 + mainProgram = "devenv"; 60 + maintainers = with lib.maintainers; [ domenkozar drupol ]; 61 + }; 41 62 }