nixpkgs/pkgs/by-name/lw/lwc/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

33 lines
693 B
Nix

{ 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 = "Live-updating version of the UNIX wc command";
homepage = "https://github.com/timdp/lwc";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
mainProgram = "lwc";
};
}