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
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, buildBowerComponents, buildGoPackage, makeWrapper }:
|
|
|
|
let
|
|
inherit (import ./src.nix) version sha256;
|
|
owner = "sensu";
|
|
repo = "uchiwa";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner repo sha256;
|
|
rev = version;
|
|
};
|
|
|
|
backend = buildGoPackage {
|
|
pname = "uchiwa-backend";
|
|
inherit version;
|
|
goPackagePath = "github.com/${owner}/${repo}";
|
|
inherit src;
|
|
postInstall = ''
|
|
mkdir -p $out
|
|
cp go/src/github.com/sensu/uchiwa/public/index.html $out/
|
|
'';
|
|
};
|
|
|
|
frontend = buildBowerComponents {
|
|
name = "uchiwa-frontend-${version}";
|
|
generated = ./bower-packages.nix;
|
|
inherit src;
|
|
};
|
|
|
|
in stdenv.mkDerivation {
|
|
pname = "uchiwa";
|
|
inherit version;
|
|
|
|
inherit src;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/bin $out/public
|
|
makeWrapper ${backend}/bin/uchiwa $out/bin/uchiwa \
|
|
--add-flags "-p $out/public"
|
|
ln -s ${backend.out}/index.html $out/public/index.html
|
|
ln -s ${frontend.out}/bower_components $out/public/bower_components
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A Dashboard for the sensu monitoring framework";
|
|
homepage = "http://sensuapp.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|