parent
fe9fc389ca
commit
e1f0e2f0d9
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/misc/lwc/default.nix
Normal file
31
pkgs/tools/misc/lwc/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "lwc";
|
||||||
|
version = "unstable-2022-07-26";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "timdp";
|
||||||
|
repo = "lwc";
|
||||||
|
rev = "3330928c9d82200837350f85335f5e6c09f0658b";
|
||||||
|
hash = "sha256-HFuXA5Y274XtgqG9odDAg9SSCgUxprnojfGavnYW4LE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-av736cW0bPsGQV+XFL/q6p/9VhjOeDwkiK5DLRnRtUg=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X=main.version=${src.rev}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A live-updating version of the UNIX wc command";
|
||||||
|
homepage = "https://github.com/timdp/lwc";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ figsoda ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9874,6 +9874,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreText;
|
inherit (darwin.apple_sdk.frameworks) CoreText;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lwc = callPackage ../tools/misc/lwc { };
|
||||||
|
|
||||||
lxc = callPackage ../os-specific/linux/lxc {
|
lxc = callPackage ../os-specific/linux/lxc {
|
||||||
autoreconfHook = buildPackages.autoreconfHook269;
|
autoreconfHook = buildPackages.autoreconfHook269;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue