about summary refs log tree commit diff
path: root/fun/uggc/default.nix
blob: ca622666dcd5d1c5fea03a450727b3f510d83aef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ depot, pkgs, ... }:

let
  inherit (depot.third_party) 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
  '';
})