17 lines
580 B
Nix
17 lines
580 B
Nix
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
|
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
let
|
|
transip-stack = pkgs.appimageTools.wrapType2 {
|
|
pname = "transip-stack";
|
|
version = "latest";
|
|
src = pkgs.fetchurl {
|
|
url = "https://filehosting-client.transip.nl/packages/stack-linux-latest-x86_64.AppImage";
|
|
sha256 = "1cmwc3mfpi7n3ga25p19pmsjmvkiy8hk4s4mxdsxkprw2vvrhwd7";
|
|
};
|
|
extraPkgs = pkgsFinal: with pkgsFinal; [ fuse ];
|
|
};
|
|
in {
|
|
environment.systemPackages = [ transip-stack ];
|
|
}
|