c4fb0432ae
GitOrigin-RevId: 3fc1143a04da49a92c3663813c6a0c1e8ccd477f
19 lines
430 B
Nix
19 lines
430 B
Nix
{ depot, pkgs, ... }@args:
|
|
|
|
let
|
|
inherit (pkgs) gopkgs;
|
|
uggc = depot.nix.buildGo.program {
|
|
name = "uggc";
|
|
srcs = [
|
|
./main.go
|
|
];
|
|
deps = [
|
|
gopkgs."github.com".pkg.browser.gopkg
|
|
];
|
|
};
|
|
in uggc.overrideAttrs(old: {
|
|
buildCommand = old.buildCommand + ''
|
|
install -D ${./uggc.desktop} $out/share/applications/uggc.desktop
|
|
sed "s|@out@|$out|g" -i $out/share/applications/uggc.desktop
|
|
'';
|
|
})
|