aboutsummaryrefslogtreecommitdiff
path: root/pkgs/lilipod.nix
blob: 7de731d1762de2a8fba3476b3618d8093f5b6196 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  fetchurl,
  lib,
  buildGoModule,
  fetchFromGitHub,
  installShellFiles,
  stdenv,
  shadow,
  util-linux,
}:
import
  (fetchurl {
    # <https://github.com/NixOS/nixpkgs/pull/347046>
    url = "https://github.com/NixOS/nixpkgs/raw/f492564639d6f63ecbe213fe160c30e355b4fd12/pkgs/by-name/li/lilipod/package.nix";
    hash = "sha256-ojsiTyvzhDCao5USngg05e2ZEgyn8MyL/vMrrFUlEMw=";
  })
  {
    inherit
      lib
      buildGoModule
      fetchFromGitHub
      installShellFiles
      stdenv
      shadow
      util-linux
      ;
  }