Simon Bruder
10b8d432d5
This applies the REUSE specification to the repository, so the licensing information can be tracked for every file individually.
22 lines
336 B
Nix
22 lines
336 B
Nix
# SPDX-FileCopyrightText: 2021 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{ lib, stdenvNoCC }:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = "sbruder-contact";
|
|
|
|
src = ./src;
|
|
|
|
dontBuild = true;
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp * $out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
license = licenses.mit;
|
|
};
|
|
}
|