Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

44 lines
956 B
Nix

{
buildGoModule,
fetchFromGitHub,
fetchpatch,
lib,
}:
buildGoModule {
pname = "devd";
version = "unstable-2020-04-27";
src = fetchFromGitHub {
owner = "cortesi";
repo = "devd";
rev = "c1a3bfba27d8e028de90fb24452374412a4cffb3";
hash = "sha256-k0zj7fiYbaHnNUUI7ruD0vXiT4c1bxPuR4I0dRouCbU=";
};
vendorHash = "sha256-o7MbN/6n7fkp/yqYyQbfWBUqI09/JYh5jtV31gjNf6w=";
patches = [
# Update x/sys to support go 1.17.
(fetchpatch {
url = "https://github.com/cortesi/devd/commit/5f4720bf41399736b4e7e1a493da6c87a583d0b2.patch";
hash = "sha256-WDN08XNsDPuZwBCE8iDXgGAWFwx2UTwqRkhzKMtPKR8=";
})
];
subPackages = [ "cmd/devd" ];
ldflags = [
"-s"
"-w"
];
meta = {
description = "Local webserver for developers";
mainProgram = "devd";
homepage = "https://github.com/cortesi/devd";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ brianhicks ];
};
}