nixpkgs/pkgs/build-support/snap/example-hello.nix
2019-06-18 18:51:58 +02: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";
};
}