Skip to content

Commit

Permalink
Fix eval
Browse files Browse the repository at this point in the history
$ nix-env -f . -qa '*' --meta --xml --drv-path --show-trace
error: while querying the derivation named ‘python2.7-rpkg-1.50’:
attribute ‘gpl2plus’ missing, at .../pkgs/development/python-modules/rpkg/default.nix:24:15

Introduced by commit c29a721
("rpkg: 1.14 -> 1.50").
  • Loading branch information
bjornfor committed Sep 17, 2017
1 parent 4db4476 commit f557aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/rpkg/default.nix
Expand Up @@ -21,7 +21,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Python library for dealing with rpm packaging";
homepage = https://pagure.io/fedpkg;
license = licenses.gpl2plus;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ mornfall ];
};

Expand Down

0 comments on commit f557aa4

Please sign in to comment.