aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/devel/lorri/default.nix
blob: 74b0801e6b8ef9aec97ee9dadbfcf59b35f5e0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, pkgs, ... }:

let
  rev = "f20a3230bf7e93c4b5b41dff85740763d7ce02c8";
  lorriSrc = fetchTarball {
    url = "https://github.com/target/lorri/archive/${rev}.tar.gz";
    sha256 = "1lp77rms6zlx04kz7nxar8ksay8xcl8bmi7nijgwyapzjy5q5cmq";
  };
in
{
  home.packages = [
    (import lorriSrc { inherit pkgs; })
  ];
}