nixpkgs/pkgs/by-name/de/devd/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

36 lines
943 B
Nix

{ buildGoModule, fetchFromGitHub, fetchpatch, lib }:
buildGoModule rec {
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 = with lib; {
description = "Local webserver for developers";
mainProgram = "devd";
homepage = "https://github.com/cortesi/devd";
license = licenses.mit;
maintainers = with maintainers; [ brianhicks ];
};
}