about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/oni2/default.nix
blob: 6721cf24d96be41088469ffd4fe7574c3290dcd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ callPackage }:

let mkOni2 = callPackage ./common.nix { };
in mkOni2 rec {
  variant = "oni2";
  license = {
    fullName = "Outrun Labs End User License Agreement";
    url = "https://github.com/onivim/oni2/blob/master/Outrun-Labs-EULA-v1.1.md";
    free = false;
  };
  version = "0.5.7";
  rev = "v${version}";
  sha256 = "NlN0Ntdwtx5XLjd1ltUzv/bjmJQR5eyRqtmicppP6YU=";
  fetchDepsSha256 = "k7G6jPJfxCCSuSucPfiXljCVJhmjl/BxWMCEjv2tfhA=";
}