Skip to content

Commit

Permalink
fix: correct license information
Browse files Browse the repository at this point in the history
  • Loading branch information
jceb committed Jul 4, 2024
1 parent dd5599c commit 9e71a4c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pkgs.rustPlatform.buildRustPackage rec {
meta = with pkgs.lib; {
description = manifest.description;
homepage = manifest.homepage;
license = with licenses; [ unfree ];
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ jceb ];
};
}
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
outputs = { self, nixpkgs, nixpkgs-unstable, flake-utils, }:
flake-utils.lib.eachDefaultSystem (system:
let
# pkgs = nixpkgs.legacyPackages.${system};
pkgs = import nixpkgs { system = system; config.allowUnfree = true; };
unstable = import nixpkgs-unstable { system = system; config.allowUnfree = true; };
# unstable = nixpkgs-unstable.legacyPackages.${system};
pkgs = nixpkgs.legacyPackages.${system};
# pkgs = import nixpkgs { system = system; config.allowUnfree = true; };
# unstable = import nixpkgs-unstable { system = system; config.allowUnfree = true; };
unstable = nixpkgs-unstable.legacyPackages.${system};
did_web_server_pkg = unstable.callPackage ./default.nix { };
manifest = pkgs.lib.importJSON ./manifest.json;
pkgVersionsEqual = x: y:
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Jan Christoph Ebersbach <[email protected]>"
],
"homepage": "https://github.com/identinet/did-web-server",
"license": "agpl3Plus",
"license": "AGPL-3.0-or-later",
"repository":
{
"type": "git",
Expand All @@ -20,4 +20,4 @@
"name": "docker.io/identinet",
"url": "https://hub.docker.com/r/identinet/did-web-server"
}
}
}

0 comments on commit 9e71a4c

Please sign in to comment.