From 8f2e588dbd2cac95abc588f3f6237c52b3cd40e3 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Tue, 24 Aug 2021 18:23:28 -0500 Subject: [PATCH] Set correct license in Nix expression Hydra upstream was always GPL3 licensed, so by extension this repo is also GPL3. --- hydra.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra.nix b/hydra.nix index ab5ce02..cd5af6e 100644 --- a/hydra.nix +++ b/hydra.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Hydra's builtin hydra-eval-jobs as a standalone"; homepage = "https://github.com/nix-community/nix-eval-jobs"; - license = licenses.mit; + license = licenses.gpl3; maintainers = with maintainers; [ mic92 ]; platforms = platforms.unix; };