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
31 lines
772 B
Nix
31 lines
772 B
Nix
{ lib, stdenv, buildGoPackage, fetchgit }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "mop";
|
|
version = "0.2.0";
|
|
rev = "bc666ec165d08b43134f7ec0bf29083ad5466243";
|
|
|
|
goPackagePath = "github.com/michaeldv/mop";
|
|
goDeps = ./deps.nix;
|
|
|
|
preConfigure = ''
|
|
for i in $(find . -type f);do
|
|
substituteInPlace $i --replace michaeldv/termbox-go nsf/termbox-go
|
|
done
|
|
substituteInPlace Makefile --replace mop/cmd mop/mop
|
|
mv cmd mop
|
|
'';
|
|
|
|
src = fetchgit {
|
|
inherit rev;
|
|
url = "https://github.com/mop-tracker/mop";
|
|
sha256 = "0zp51g9i8rw6acs4vnrxclbxa5z1v0a0m1xx27szszp0rphcczkx";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple stock tracker implemented in go";
|
|
homepage = "https://github.com/mop-tracker/mop";
|
|
license = licenses.mit;
|
|
};
|
|
}
|