0

I'm having some trouble finding plasma-nm in nixpkgs. I can see here that the package exists, and is even registered in all-packages.nix... so why doesn't nix-env -qa list it as a derivation? I'm sorry if there is an obvious answer to this.

Athan Clark
  • 3,886
  • 2
  • 21
  • 39

1 Answers1

1

Maybe you are using an old nixpkgs version, e.g. 14.04 instead of unstable.

lethalman
  • 1,976
  • 1
  • 14
  • 18
  • I don't think I am, I've got a cloned repo straight from https://github.com/nixos/nixpkgs, but I'm not sure if I'm using it correctly. `sudo nix-env -I {,nixpkgs=}/opt/nixpkgs/ -qa |grep plasma` only returns the kdeplasma-addons :/. – Athan Clark Oct 13 '14 at 18:41
  • Ahhh, I think I see where I messed up - the `-f` option is what I was supposed to use. Thank you for your help!! `nix-env -qaf /opt/nixpkgs/ |grep plasma` got it :) – Athan Clark Oct 13 '14 at 19:20