summary refs log tree commit diff
path: root/doc/builders/images/snap/example-hello.nix
diff options
context:
space:
mode:
Diffstat (limited to 'doc/builders/images/snap/example-hello.nix')
-rw-r--r--doc/builders/images/snap/example-hello.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/doc/builders/images/snap/example-hello.nix b/doc/builders/images/snap/example-hello.nix
deleted file mode 100644
index 123da80c547..00000000000
--- a/doc/builders/images/snap/example-hello.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-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";
-  };
-}