uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
30
pkgs/development/tools/pgtop/default.nix
Normal file
30
pkgs/development/tools/pgtop/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, perlPackages, fetchFromGitHub, shortenPerlShebang }:
|
||||
|
||||
perlPackages.buildPerlPackage rec {
|
||||
pname = "pgtop";
|
||||
version = "0.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cosimo";
|
||||
repo = "pgtop";
|
||||
rev = "v${version}";
|
||||
sha256 = "1awyl6ddfihm7dfr5y2z15r1si5cyipnlyyj3m1l19pk98s4x66l";
|
||||
};
|
||||
|
||||
outputs = [ "out" ];
|
||||
|
||||
buildInputs = with perlPackages; [ DBI DBDPg TermReadKey JSON LWP ];
|
||||
|
||||
nativeBuildInputs = lib.optional stdenv.isDarwin shortenPerlShebang;
|
||||
postInstall = lib.optionalString stdenv.isDarwin ''
|
||||
shortenPerlShebang $out/bin/pgtop
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "a PostgreSQL clone of `mytop', which in turn is a `top' clone for MySQL";
|
||||
homepage = "https://github.com/cosimo/pgtop";
|
||||
changelog = "https://github.com/cosimo/pgtop/releases/tag/v${version}";
|
||||
maintainers = [ maintainers.hagl ];
|
||||
license = [ licenses.gpl2Only ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue