ocamlPackages: stdenv.lib → lib
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
This commit is contained in:
committed by
Profpatsch
parent
ff3057f61a
commit
4e42cac49d
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
|
||||
{ stdenv, lib, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "ocamlfuse";
|
||||
@@ -16,8 +16,8 @@ buildDunePackage {
|
||||
meta = {
|
||||
homepage = "https://sourceforge.net/projects/ocamlfuse";
|
||||
description = "OCaml bindings for FUSE";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ bennofs ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user