mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, stdenv, pkgconfig, libappindicator-gtk3, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "systrayhelper";
|
|
version = "0.0.5";
|
|
rev = "ded1f2ed4d30f6ca2c89a13db0bd3046c6d6d0f9";
|
|
|
|
goPackagePath = "github.com/ssbc/systrayhelper";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "ssbc";
|
|
repo = "systrayhelper";
|
|
sha256 = "0bn3nf43m89qmh8ds5vmv0phgdz32idz1zisr47jmvqm2ky1a45s";
|
|
};
|
|
|
|
# re date: https://github.com/NixOS/nixpkgs/pull/45997#issuecomment-418186178
|
|
# > .. keep the derivation deterministic. Otherwise, we would have to rebuild it every time.
|
|
buildFlagsArray = [ ''-ldflags=
|
|
-X main.version=v${version}
|
|
-X main.commit=${rev}
|
|
-X main.date="nix-byrev"
|
|
-s
|
|
-w
|
|
'' ];
|
|
|
|
nativeBuildInputs = [ pkgconfig libappindicator-gtk3 ];
|
|
buildInputs = [ libappindicator-gtk3 ];
|
|
|
|
meta = with lib; {
|
|
description = "A systray utility written in go, using json over stdio for control and events";
|
|
homepage = "https://github.com/ssbc/systrayhelper";
|
|
maintainers = with maintainers; [ cryptix ];
|
|
license = licenses.mit;
|
|
# It depends on the inputs, i guess? not sure about solaris, for instance. go supports it though
|
|
# I hope nix can figure this out?! ¯\\_(ツ)_/¯
|
|
};
|
|
}
|