diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-15 06:39:42 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-15 07:06:51 +0100 |
commit | ae67ef4f60656557d2408f3a4c2ba01959eef2c5 (patch) | |
tree | dd3a4411aedbe99fba9fa90ad2cc1ae17a99dd9b /default.nix | |
parent | 8f0377eec717a6d1bb8578bcb8da481c82423310 (diff) |
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..1fb47c4 --- /dev/null +++ b/default.nix @@ -0,0 +1,12 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.stdenv.mkDerivation { + name = "geopos-share"; + + src = ./.; + + installPhase = '' + mkdir -p $out + cp index.html script.js $out + ''; +} |