nixpkgs/doc/functions/snap/example-hello.nix
2019-07-10 08:02:14 -07:00

13 lines
308 B
Nix

let
inherit (import <nixpkgs> { }) snapTools hello;
in snapTools.makeSnap {
meta = {
name = "hello";
summary = hello.meta.description;
description = hello.meta.longDescription;
architectures = [ "amd64" ];
confinement = "strict";
apps.hello.command = "${hello}/bin/hello";
};
}